Release #28
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: "Release" | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| dryRun: | |
| description: "Do a dry run to preview instead of a real release [true/false]" | |
| required: true | |
| default: "false" | |
| jobs: | |
| semantic-release: | |
| name: "Semantic Release" | |
| runs-on: macos-latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }} | |
| GIT_AUTHOR_NAME: mparticle-automation | |
| GIT_AUTHOR_EMAIL: [email protected] | |
| GIT_COMMITTER_NAME: mparticle-automation | |
| GIT_COMMITTER_EMAIL: [email protected] | |
| steps: | |
| - name: "Checkout public main branch" | |
| uses: actions/checkout@v3 | |
| with: | |
| token: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }} | |
| fetch-depth: 0 | |
| ref: main | |
| - name: "Import GPG Key" | |
| uses: crazy-max/ghaction-import-gpg@v5 | |
| with: | |
| gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
| passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
| git_user_signingkey: true | |
| git_commit_gpgsign: true | |
| - name: "Semantic Release --dry-run" | |
| if: ${{ github.event.inputs.dryRun == 'true' }} | |
| run: | | |
| npx \ | |
| -p lodash \ | |
| -p semantic-release@17 \ | |
| -p @semantic-release/changelog@5 \ | |
| -p @semantic-release/git@9 \ | |
| -p @semantic-release/exec@5 \ | |
| -p conventional-changelog-conventionalcommits@7 \ | |
| semantic-release --dry-run | |
| - name: "Semantic Release" | |
| if: ${{ github.event.inputs.dryRun == 'false' }} | |
| run: | | |
| npx \ | |
| -p lodash \ | |
| -p semantic-release@17 \ | |
| -p @semantic-release/changelog@5 \ | |
| -p @semantic-release/git@9 \ | |
| -p @semantic-release/exec@5 \ | |
| -p conventional-changelog-conventionalcommits@7 \ | |
| semantic-release | |
| - name: "Push automated release commits to release branch" | |
| if: ${{ github.event.inputs.dryRun == 'false' }} | |
| run: | | |
| git push origin main | |
| sonatype-release: | |
| name: "Sonatype Release" | |
| needs: semantic-release | |
| runs-on: macos-latest | |
| if: ${{ github.event.inputs.dryRun == 'false' }} | |
| env: | |
| sonatypeUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }} | |
| sonatypePassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} | |
| mavenSigningKeyId: ${{ secrets.MAVEN_CENTRAL_SIGNING_KEY }} | |
| mavenSigningKeyPassword: ${{ secrets.MAVEN_CENTRAL_SIGNING_KEY_PASSWORD }} | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: main | |
| - name: "Install JDK 11" | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: "zulu" | |
| java-version: "11" | |
| cache: "gradle" | |
| - name: "Publish Android To Sonatype" | |
| run: | | |
| ./gradlew -PisRelease=true publishReleasePublicationToMavenRepository --stacktrace |