Skip to content

Commit 1dbf952

Browse files
sdwilshfacebook-github-bot
authored andcommitted
fix: use correct arch for macosx when uploading release artifacts
Summary: We got this wrong in #64, and automation merged it before I could fix it. Reviewed By: bigfootjon Differential Revision: D77190788 fbshipit-source-id: af6e12cc9e52391c4b91f2ecf6b409f286344b8d
1 parent 2f5b062 commit 1dbf952

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# Package architecture-specific binaries
4040
- run: tar -czvf "dotslash-macos-arm64.tar.gz" -C target/aarch64-apple-darwin/release dotslash
4141
shell: bash
42-
- run: tar -czvf "dotslash-macos-amd64.tar.gz" -C target/x86_64-apple-darwin/release dotslash
42+
- run: tar -czvf "dotslash-macos-x86_64.tar.gz" -C target/x86_64-apple-darwin/release dotslash
4343
shell: bash
4444
# Upload all binaries
4545
- name: upload release
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
gh release upload "${GITHUB_REF#refs/tags/}" "dotslash-macos.tar.gz"
5151
gh release upload "${GITHUB_REF#refs/tags/}" "dotslash-macos-arm64.tar.gz"
52-
gh release upload "${GITHUB_REF#refs/tags/}" "dotslash-macos-amd64.tar.gz"
52+
gh release upload "${GITHUB_REF#refs/tags/}" "dotslash-macos-x86_64.tar.gz"
5353
# Deprecated; will be removed in a future release!
5454
# Package universal binary
5555
- run: tar -czvf "dotslash-macos.${GITHUB_REF#refs/tags/}.tar.gz" dotslash

0 commit comments

Comments
 (0)