We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be38878 commit 9b01f12Copy full SHA for 9b01f12
1 file changed
.github/workflows/release-prebuilt-npm.yml
@@ -184,6 +184,7 @@ jobs:
184
- name: Download platform artifacts
185
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
186
with:
187
+ pattern: hunkdiff-*
188
path: dist/release/artifacts
189
190
- name: Archive release assets
@@ -205,7 +206,7 @@ jobs:
205
206
fi
207
chmod 0755 "$binary"
208
tar -C "$(dirname "$directory")" -czf "dist/release/github/${package_name}.tar.gz" "$package_name"
- done < <(find dist/release/artifacts -mindepth 1 -maxdepth 1 -type d -print0 | sort -z)
209
+ done < <(find dist/release/artifacts -mindepth 1 -maxdepth 1 -type d -name 'hunkdiff-*' -print0 | sort -z)
210
find dist/release/github -maxdepth 1 -type f | sort
211
212
- name: Create or update GitHub release
0 commit comments