version 1.84.0 #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Boost Libraries | |
on: | |
release: | |
types: [published] | |
push: | |
tags: | |
- 1.** | |
workflow_dispatch: | |
jobs: | |
Build: | |
runs-on: macos-latest | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
export ICU4C_RELEASE_LINK=https://github.com/apotocki/icu4c-iosx/releases/download/74.2.6 | |
scripts/build.sh | |
for i in frameworks/*.xcframework/; do cd frameworks && zip -9 -r "$(basename -- $i).zip" $(basename -- $i) & done; wait | |
cd frameworks | |
mv Headers include | |
zip -9 -r include.zip include | |
wait | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
frameworks/*.zip |