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 b7f992d commit 781c33dCopy full SHA for 781c33d
.github/workflows/release.yml
@@ -41,21 +41,23 @@ jobs:
41
uses: actions/checkout@v3
42
43
- name: Download binaries
44
- uses: actions/download-artifact@v2
+ id: download
45
+ uses: actions/download-artifact@v3
46
with:
47
path: binaries
48
49
50
- name: deubg ls binaries
51
shell: bash
52
run: |
- ls -la binaries
53
+ ls -la ${{steps.download.outputs.download-path}}/*
54
55
- name: Release
56
uses: softprops/action-gh-release@v1
57
if: startsWith(github.ref, 'refs/tags/')
58
59
+ fail_on_unmatched_files: true
60
files: |
- binaries/*.*
- name: Release ${{ github.ref }}
61
+ ${{steps.download.outputs.download-path}}/*
62
+ name: Release ${{ github.ref }}/*
63
tag_name: ${{ github.ref }}
0 commit comments