Update CHANGELOG and docs for v8.18.1 #32
Workflow file for this run
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: Release scala package | |
on: | |
push: | |
branches: | |
- release/* | |
jobs: | |
pre-release-check: | |
uses: cucumber/.github/.github/workflows/prerelease-checks.yml@main | |
build: | |
uses: ./.github/workflows/build.yml | |
publish-sbt: | |
name: Publish scala package | |
needs: [pre-release-check, build] | |
runs-on: ubuntu-latest | |
environment: Release | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "11" | |
- uses: cucumber/[email protected] | |
with: | |
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
nexus-username: cukebot | |
nexus-password: ${{ secrets.SONATYPE_PASSWORD }} | |
working-directory: . | |
create-github-release: | |
name: Create GitHub Release and Git tag | |
runs-on: ubuntu-latest | |
needs: [publish-sbt] | |
environment: Release | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cucumber/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |