Skip to content

Commit 539e470

Browse files
committed
hotfix(ci): auto gh release
1 parent 1e2702e commit 539e470

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/publish.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,14 @@ jobs:
2020
run: |
2121
git config --global --add safe.directory $GITHUB_WORKSPACE
2222
sbt clean publish
23+
gh-release:
24+
needs: [publish]
25+
runs-on: self-hosted
26+
steps:
27+
- uses: softprops/action-gh-release@v2
28+
with:
29+
token: ${{ secrets.RAW_CI_PAT }}
30+
generate_release_notes: true
31+
draft: false
32+
prerelease: ${{ contains(github.ref_name, '-') }}
33+
tag_name: ${{ github.ref_name }}

0 commit comments

Comments
 (0)