Skip to content

Commit

Permalink
Make sure prebuilt binary archives include a root directory
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Jul 30, 2024
1 parent dc66166 commit 691f320
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
- name: Archive Mac Binary
run: |
chmod +x foldmason/bin/foldmason
tar -czvf foldmason-osx-universal.tar.gz -C foldmason .
tar -czvf foldmason-osx-universal.tar.gz foldmason
# Linux SSE41
- name: Download foldmason-linux-SSE4_1 Artifact
Expand All @@ -205,7 +205,7 @@ jobs:
- name: Archive SSE4_1 Binary
run: |
chmod +x foldmason/bin/foldmason
tar -czvf foldmason-linux-sse41.tar.gz -C foldmason .
tar -czvf foldmason-linux-sse41.tar.gz foldmason
# Linux SSE2
- name: Download foldmason-linux-SSE2 Artifact
Expand All @@ -217,7 +217,7 @@ jobs:
- name: Archive SSE2 Binary
run: |
chmod +x foldmason/bin/foldmason
tar -czvf foldmason-linux-sse2.tar.gz -C foldmason .
tar -czvf foldmason-linux-sse2.tar.gz foldmason
# Linux AVX2
- name: Download foldmason-linux-AVX2 Artifact
Expand All @@ -229,7 +229,7 @@ jobs:
- name: Archive AVX2 Binary
run: |
chmod +x foldmason/bin/foldmason
tar -czvf foldmason-linux-avx2.tar.gz -C foldmason .
tar -czvf foldmason-linux-avx2.tar.gz foldmason
# Linux ARM64
- name: Download foldmason-linux-ARM8 Artifact
Expand All @@ -241,7 +241,7 @@ jobs:
- name: Archive ARM8 Binary
run: |
chmod +x foldmason/bin/foldmason
tar -czvf foldmason-linux-arm64.tar.gz -C foldmason .
tar -czvf foldmason-linux-arm64.tar.gz foldmason
- name: Get Deployment Key
run: |
Expand Down

0 comments on commit 691f320

Please sign in to comment.