We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38faa47 commit 101f0e8Copy full SHA for 101f0e8
1 file changed
.github/workflows/publish.yml
@@ -59,3 +59,26 @@ jobs:
59
MAVEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
60
MAVEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
61
MAVEN_GPG_PASSPHRASE: ${{ secrets.SIGNING_PASSWORD }}
62
+
63
+ release:
64
+ name: Create GitHub Release
65
+ needs: [publish]
66
+ if: ${{ !cancelled() && !failure() }}
67
+ runs-on: ubuntu-latest
68
+ permissions:
69
+ contents: write
70
+ steps:
71
+ - name: Checkout
72
+ uses: actions/checkout@v6
73
+ with:
74
+ ref: ${{ github.event.inputs.tag }}
75
+ fetch-depth: 0
76
77
+ - name: Create Release
78
+ uses: softprops/action-gh-release@v2
79
80
+ tag_name: ${{ github.event.inputs.tag }}
81
+ name: ${{ github.event.inputs.tag }}
82
+ generate_release_notes: true
83
+ env:
84
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments