We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f7d4c5 + 06db6af commit 6f7255eCopy full SHA for 6f7255e
.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