Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaDucak committed Oct 20, 2023
1 parent fdb8eb5 commit 09976ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,18 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- run: brew install boost openssl
- run: arch -arm64 brew install boost openssl

- name: Build for MacOS
run: |
mkdir build-macos
cd build-macos
cmake ..
make
arch -arm64 cmake ..
arch -arm64 make
- name: Archive and Upload MacOS binaries to release
run: |
tar czf caps-log-macos-arm.tar.gz build-macos/source/caps-log
tar -C build-macos/source czf caps-log-macos-arm.tar.gz caps-log
gh release upload ${{ needs.create-release.outputs.version }} caps-log-macos-arm.tar.gz --clobber
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 09976ed

Please sign in to comment.