Skip to content

Commit 781c33d

Browse files
committed
fix: glob
1 parent b7f992d commit 781c33d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/release.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,23 @@ jobs:
4141
uses: actions/checkout@v3
4242

4343
- name: Download binaries
44-
uses: actions/download-artifact@v2
44+
id: download
45+
uses: actions/download-artifact@v3
4546
with:
4647
path: binaries
4748

4849

4950
- name: deubg ls binaries
5051
shell: bash
5152
run: |
52-
ls -la binaries
53+
ls -la ${{steps.download.outputs.download-path}}/*
5354
5455
- name: Release
5556
uses: softprops/action-gh-release@v1
5657
if: startsWith(github.ref, 'refs/tags/')
5758
with:
59+
fail_on_unmatched_files: true
5860
files: |
59-
binaries/*.*
60-
name: Release ${{ github.ref }}
61+
${{steps.download.outputs.download-path}}/*
62+
name: Release ${{ github.ref }}/*
6163
tag_name: ${{ github.ref }}

0 commit comments

Comments
 (0)