Skip to content

Commit

Permalink
Fix executable filenames.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmitr committed Nov 10, 2024
1 parent ee524a7 commit 7ef43b1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,14 @@ jobs:
with:
pattern: hub-recovery-*
path: artifacts
merge-multiple: true

- name: Copy and rename executables
run: |
mkdir -p out
cp artifacts/hub-recovery-x86_64-unknown-linux-gnu/hub-recovery out/hub-recovery-linux-x86_64
cp artifacts/hub-recovery-aarch64-unknown-linux-gnu/hub-recovery out/hub-recovery-linux-aarch64
cp artifacts/hub-recovery-x86_64-pc-windows-msvc/hub-recovery.exe out/hub-recovery-windows-x86_64.exe
cp artifacts/hub-recovery-universal-apple-darwin/hub-recovery out/hub-recovery-macos
- name: Create release without tag
if: github.ref_type != 'tag'
Expand All @@ -52,4 +59,4 @@ jobs:
--generate-notes \
--draft \
--verify-tag \
./artifacts/*
./out/*

0 comments on commit 7ef43b1

Please sign in to comment.