Move to a strategy of targeting a grails version by branch version #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | |
on: | |
push: | |
branches: | |
- '[6-9]+.[0-9]+.x' | |
pull_request: | |
branches: | |
- '[6-9]+.[0-9]+.x' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
WORKSPACE: ${{ github.workspace }} | |
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8 | |
SIGNING_KEYRING: ${{ secrets.SECRING_FILE }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.5.1' | |
- run: npm install | |
- run: npm install --global gulp-cli | |
- run: npm gulp grailsRelease | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'liberica' | |
java-version: '11' | |
- name: Run Build | |
uses: gradle/gradle-build-action@v3 | |
working-directory: plugin | |
run: ./gradlew build -Dgeb.env=chromeHeadless | |
publish: | |
if: github.event_name == 'push' | |
needs: ['build'] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.5.1' | |
- run: npm install | |
- run: npm install --global gulp-cli | |
- run: npm gulp grailsRelease | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'liberica' | |
java-version: '11' | |
- name: Publish Artifacts (repo.grails.org) | |
id: publish | |
uses: gradle/gradle-build-action@v3 | |
env: | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
working-directory: plugin | |
run: ./gradlew -Dorg.gradle.internal.publish.checksums.insecure=true publish |