Skip to content

Commit e33df7d

Browse files
committed
🐛 Fix artifact paths for release creation in workflow
1 parent a67ed28 commit e33df7d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,17 @@ jobs:
8888
- name: Download artifacts
8989
uses: actions/download-artifact@v4
9090
with:
91-
path: artifacts
91+
path: target
9292
- name: Create Release
9393
id: create_release
9494
uses: softprops/action-gh-release@v2
9595
with:
96-
files: artifacts/*/*
96+
files: |
97+
target/x86_64-unknown-linux-gnu/release/mq-x86_64-unknown-linux-gnu
98+
target/aarch64-unknown-linux-gnu/release/mq-aarch64-unknown-linux-gnu
99+
target/x86_64-pc-windows-msvc/release/mq-x86_64-pc-windows-msvc.exe
100+
target/x86_64-apple-darwin/release/mq-x86_64-apple-darwin
101+
target/aarch64-apple-darwin/release/mq-aarch64-apple-darwin
97102
draft: true
98103
prerelease: false
99104
generate_release_notes: true

0 commit comments

Comments
 (0)