v6: use clientId from OIDC config on the server #84
Workflow file for this run
This file contains hidden or 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: Create Release | |
| on: | |
| push: | |
| tags: | |
| - '**' | |
| pull_request: | |
| # Release a new SNAPSHOT version every time a PR is merged to v6. | |
| types: [closed] | |
| branches: ['v6'] | |
| jobs: | |
| release: | |
| name: Deploy | |
| if: > | |
| (github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) | |
| || (github.event_name == 'pull_request' && github.event.pull_request.merged == true) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Unpack secrets | |
| env: | |
| GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
| run: | | |
| ./tools/decrypt_secret.sh | |
| - name: Deploy | |
| env: | |
| OKTA_DUMMY_CI_PW: ${{ secrets.OKTA_DUMMY_CI_PW }} | |
| WCS_DUMMY_CI_PW: ${{ secrets.WCS_DUMMY_CI_PW }} | |
| OKTA_CLIENT_SECRET: ${{ secrets.OKTA_CLIENT_SECRET }} | |
| AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
| run: | | |
| export GPG_TTY=$(tty) | |
| source ./passphrase.env # load $MAVEN_GPG_PASSHRASE for maven-gpg-plugin | |
| mvn -DskipTests clean package | |
| mvn -s settings.xml \ | |
| -Dcentral-publishing.autoPublish=true \ | |
| -Dcentral-publishing.waitUntil=published \ | |
| deploy | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: jar-files | |
| path: "target/*.jar" | |
| retention-days: 1 | |
| gh-release: | |
| name: Create a GitHub Release | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
| runs-on: ubuntu-latest | |
| needs: [ release ] | |
| steps: | |
| - name: Download artifacts to append to release | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: jar-files | |
| path: target | |
| - name: Create a GitHub Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| generate_release_notes: true | |
| draft: true | |
| files: target/*.jar |