Skip to content

Commit

Permalink
ci: fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed Mar 22, 2024
1 parent b9b2bb4 commit e2c7f19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ jobs:
- name: 'Release with JReleaser'
env:
JRELEASER_BRANCH: ${{ needs.set-release-version.outputs.HEAD }}
JRELEASER_GITHUB_TOKEN: ${{ secrets.PAT }}
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}
JRELEASER_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
Expand All @@ -197,4 +198,4 @@ jobs:
./mvnw -ntp -B versions:set versions:commit -DnewVersion=${{ env.NEXT_VERSION }}
find . -name 'pom.xml' | xargs git add
git commit -m "ci: bump version for next iteration to ${{ env.NEXT_VERSION }} 🤖"
git push origin HEAD:${GITHUB_REF#refs/heads/}
git push origin HEAD:${{ needs.set-release-version.outputs.HEAD }}

0 comments on commit e2c7f19

Please sign in to comment.