Skip to content

Commit 191e094

Browse files
committed
Fix path
1 parent b45007b commit 191e094

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
target: x86_64-unknown-linux-musl
2121
artifact_name: target/x86_64-unknown-linux-musl/release/richclip
2222
archive_type: tar
23+
ext: tar.gz
2324

2425
## macOS builds
2526
- os: macos-latest
@@ -30,6 +31,7 @@ jobs:
3031
target: aarch64-apple-darwin
3132
artifact_name: target/aarch64-apple-darwin/release/richclip
3233
archive_type: tar
34+
ext: tar.gz
3335

3436
steps:
3537
- uses: actions/checkout@v4
@@ -48,9 +50,9 @@ jobs:
4850
uses: TheDoctor0/[email protected]
4951
with:
5052
type: ${{ matrix.archive_type }}
51-
dir: target/release
53+
dir: target/${{ matrix.target }}/release
5254
path: richclip
53-
filename: richclip_${{ github.ref_name }}_${{ matrix.target }}.${{ matrix.archive_type }}
55+
filename: richclip_${{ github.ref_name }}_${{ matrix.target }}.${{ matrix.ext }}
5456
exclusions: '*.git* /*node_modules/* .editorconfig'
5557

5658
- name: Upload artifacts

0 commit comments

Comments
 (0)