build: Increment version to 0.3.3 #20
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: Publish and Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' # Triggers on tags like v1.0, v2.1, etc. | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: read | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build.yml | |
| publish: | |
| needs: build | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| name: Publish to Maven Central | |
| runs-on: macOS-latest | |
| env: | |
| ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }} | |
| ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} | |
| ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.SIGNING_KEY_ID }} | |
| ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }} | |
| ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_KEY_CONTENTS }} | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - name: Clean Build | |
| run: ./gradlew clean | |
| - name: Publish to MavenCentral | |
| run: ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache | |
| github-release: | |
| needs: publish # Runs only if Maven publish is successful | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| runs-on: macOS-latest | |
| name: Generate Release Notes | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| # this will create a GitHub release notes | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: ${{ github.ref_name }} | |
| release_name: Release ${{ github.ref_name }} | |
| generate_release_notes: true # This will generate release notes automatically | |
| draft: false | |
| prerelease: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |