We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f7d4c5 commit 06db6afCopy full SHA for 06db6af
.github/workflows/build.yml
@@ -24,11 +24,9 @@ jobs:
24
run: dapper ci
25
26
- name: Release
27
- uses: softprops/action-gh-release@v2
28
if: startsWith(github.ref, 'refs/tags/')
29
- with:
30
- files: |
31
- dist/artifacts/rancherd-amd64
32
- dist/artifacts/rancherd-arm64
33
- dist/artifacts/sha256sum-amd64.txt
34
- dist/artifacts/sha256sum-arm64.txt
+ run: |
+ gh release upload ${{ github.ref_name }} dist/artifacts/rancherd-amd64
+ gh release upload ${{ github.ref_name }} dist/artifacts/rancherd-arm64
+ gh release upload ${{ github.ref_name }} dist/artifacts/sha256sum-amd64.txt
+ gh release upload ${{ github.ref_name }} dist/artifacts/sha256sum-arm64.txt
0 commit comments