We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a67ed28 commit e33df7dCopy full SHA for e33df7d
.github/workflows/release.yml
@@ -88,12 +88,17 @@ jobs:
88
- name: Download artifacts
89
uses: actions/download-artifact@v4
90
with:
91
- path: artifacts
+ path: target
92
- name: Create Release
93
id: create_release
94
uses: softprops/action-gh-release@v2
95
96
- files: artifacts/*/*
+ 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
102
draft: true
103
prerelease: false
104
generate_release_notes: true
0 commit comments