Skip to content

Commit

Permalink
fix: osx release
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromil committed Feb 15, 2025
1 parent 5911cc2 commit 989189b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,16 +204,19 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Get architecture
run: |
echo "ARCH=$(uname -m)" >> $GITHUB_ENV
- name: Build native Apple/OSX command executable
run: |
make apple-osx RELEASE=1
mv cjit.command cjit-Darwin-`uname -m`
mv cjit.command cjit-Darwin-${{ env.ARCH }}
- name: Upload artifact apple-osx
uses: actions/upload-artifact@v4
with:
name: release-osx-native
name: release-osx-${{ env.ARCH }}
path: |
cjit-Darwin-`uname -m`
cjit-Darwin-${{ env.ARCH }}
binary-release:
name: 📢 Public release
Expand Down

0 comments on commit 989189b

Please sign in to comment.