Create opus Release #7
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
on: | |
# push: | |
# branches: [master] | |
workflow_dispatch: | |
pull_request: | |
branches: [master] | |
name: Create opus Release | |
jobs: | |
build: | |
name: compile opus then deploy | |
runs-on: macos-13 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Read Tag Version | |
run: | | |
# https://stackoverflow.com/questions/4916492/git-describe-fails-with-fatal-no-names-found-cannot-describe-anything | |
# git describe --tags --always | awk -F . '{printf "RELEASE_VERSION=%s.%d",$1,$2+1}' | xargs > constants.env | |
# git describe --tags --always | awk -F - '{printf "RELEASE_VERSION=V1.0-%s",$NF}' | xargs > constants.env | |
d=$(TZ=UTC-8 date +'%y%m%d%H%M%S') | |
LIB_NAME=opus | |
grep GIT_REPO_VERSION= ./init-cfgs/$LIB_NAME | awk -F = '{printf "RELEASE_VERSION=%s",$2}' | xargs > constants.env | |
echo "RELEASE_DATE=$d" >> constants.env | |
echo "LIB_NAME=$LIB_NAME" >> constants.env | |
cat constants.env | |
- name: Export Env | |
uses: cardinalby/export-env-action@v2 | |
with: | |
envFile: 'constants.env' | |
- name: init src | |
run: ./init-any.sh all ${{ env.LIB_NAME }} | |
- name: generate src log | |
run: | | |
cd build/src/macos | |
ls | awk -F ' ' '{printf "echo %s\n echo -------------\ngit -C %s log -n 1 | cat\n",$0,$0}' | bash > ../macos-src-log.md | |
cd ../ios | |
ls | awk -F ' ' '{printf "echo %s\n echo -------------\ngit -C %s log -n 1 | cat\n",$0,$0}' | bash > ../ios-src-log.md | |
cd ../tvos | |
ls | awk -F ' ' '{printf "echo %s\n echo -------------\ngit -C %s log -n 1 | cat\n",$0,$0}' | bash > ../tvos-src-log.md | |
- name: do compile macos libs | |
run: | | |
./macos/compile-any.sh -a 'arm64 x86_64' -c build -l ${{ env.LIB_NAME }} | |
- name: do compile ios libs | |
run: | | |
./ios/compile-any.sh -a 'arm64 x86_64_simulator' -c build -l ${{ env.LIB_NAME }} | |
- name: do compile tvos libs | |
run: | | |
./tvos/compile-any.sh -a 'arm64 arm64_simulator' -c build -l ${{ env.LIB_NAME }} | |
- name: Zip apple xcframework | |
run: | | |
cd build/product/xcframework | |
zip -rq apple-xcframework.zip ./* | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ env.LIB_NAME }}-${{ env.RELEASE_VERSION }}-${{ env.RELEASE_DATE }} | |
release_name: ${{ env.LIB_NAME }}-${{ env.RELEASE_VERSION }} | |
draft: false | |
prerelease: false | |
- name: Upload Apple Plat Release Asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: build/product/apple-xcframework.zip | |
asset_name: "${{ env.LIB_NAME }}-apple-xcframework-${{ env.RELEASE_VERSION }}.zip" | |
asset_content_type: application/zip | |
- name: Upload macos src md | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: build/src/macos-src-log.md | |
asset_name: "macos-src-log-${{ env.RELEASE_VERSION }}.md" | |
asset_content_type: application/text | |
- name: Upload ios src md | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: build/src/ios-src-log.md | |
asset_name: "ios-src-log-${{ env.RELEASE_VERSION }}.md" | |
asset_content_type: application/text | |
- name: Upload tvos src md | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: build/src/tvos-src-log.md | |
asset_name: "tvos-src-log-${{ env.RELEASE_VERSION }}.md" | |
asset_content_type: application/text |