We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15323b5 commit 80f7770Copy full SHA for 80f7770
.github/workflows/build.yml
@@ -26,11 +26,9 @@ jobs:
26
name: artifacts
27
path: target/*.jar
28
- name: Create Release
29
- uses: actions/create-release@v1 # NOTE: action is unmaintained and repo archived
+ uses: softprops/action-gh-release@v1
30
if: startsWith(github.ref, 'refs/tags/')
31
- env:
32
- GITHUB_TOKEN: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }} # release as "cryptobot"
33
with:
34
- tag_name: ${{ github.ref }}
35
- release_name: Release ${{ github.ref }}
36
- prerelease: true
+ prerelease: true
+ token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
+ generate_release_notes: true
0 commit comments