We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 036e8e9 commit 8b5280aCopy full SHA for 8b5280a
.github/workflows/release.yml
@@ -24,12 +24,10 @@ jobs:
24
path: ./artifacts
25
run-id: ${{ steps.get_run_id.outputs.run_id }}
26
github-token: ${{ secrets.GITHUB_TOKEN }}
27
- - name: Create Release
+ - name: Create release and upload assets
28
id: create_release
29
- uses: softprops/action-gh-release@v2
30
- - name: Upload artifacts
31
- uses: svenstaro/upload-release-action@v2
+ uses: ncipollo/release-action@v1
32
with:
33
- repo_token: ${{ secrets.GITHUB_TOKEN }}
34
- file: artifacts/*
35
- tag: ${{ github.ref }}
+ token: ${{ secrets.GITHUB_TOKEN }}
+ artifacts: "artifacts/*.zip"
+ tag: ${{ github.ref_name }}
0 commit comments