Skip to content

Commit

Permalink
Update tagged-release.yml
Browse files Browse the repository at this point in the history
- trying to use `xattr` and `strip` on the macos build
- updating linux to Clang 18
  • Loading branch information
fosterbrereton authored Sep 12, 2024
1 parent 91daa1d commit 3a7144a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,24 @@ jobs:
- name: 🗜️ Create archive
run: |
cd build/Release
# xattr -d com.apple.quarantine hyde
tar -zcvf hyde-${{github.ref_name}}-macos-${{runner.arch}}.tgz hyde
xattr -d com.apple.quarantine hyde
strip hyde
tar -zcvf hyde-${{github.ref_name}}-macos.tgz hyde
- name: ✍️ Post archive
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files:
build/Release/hyde-${{github.ref_name}}-macos-${{runner.arch}}.tgz
build/Release/hyde-${{github.ref_name}}-macos.tgz
release-linux:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout sources
uses: actions/checkout@v3
- name: 🏗️ Setup project files
run: |
sudo apt-get install libllvm13 llvm-13 llvm-13-dev
sudo apt-get install clang-tools-13 libclang-common-13-dev clang-13 libclang-13-dev
sudo apt-get install libllvm18 llvm-18 llvm-18-dev
sudo apt-get install clang-tools-18 libclang-common-18-dev clang-18 libclang-18-dev
sudo apt-get install ninja-build
git submodule update --init
mkdir build
Expand Down

0 comments on commit 3a7144a

Please sign in to comment.