Skip to content

Commit d179986

Browse files
author
Project Cleanup
committed
Fix artifact paths for v4 download-artifact action
1 parent d2ce9f4 commit d179986

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,17 @@ jobs:
7878

7979
- name: Download all artifacts
8080
uses: actions/download-artifact@v4
81+
with:
82+
path: artifacts
8183

8284
- name: Create release
8385
uses: softprops/action-gh-release@v1
8486
with:
8587
files: |
86-
bulk-generator-windows-amd64/bulk-generator-windows-amd64.exe
87-
bulk-generator-darwin-amd64/bulk-generator-darwin-amd64
88-
bulk-generator-darwin-arm64/bulk-generator-darwin-arm64
89-
bulk-generator-linux-amd64/bulk-generator-linux-amd64
88+
artifacts/bulk-generator-windows-amd64/bulk-generator-windows-amd64.exe
89+
artifacts/bulk-generator-darwin-amd64/bulk-generator-darwin-amd64
90+
artifacts/bulk-generator-darwin-arm64/bulk-generator-darwin-arm64
91+
artifacts/bulk-generator-linux-amd64/bulk-generator-linux-amd64
9092
generate_release_notes: true
9193
draft: false
9294
prerelease: false

0 commit comments

Comments
 (0)