Update main.yml #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
name: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
release: | |
types: [published] | |
env: | |
PROJECT_TYPE: APP | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-latest | |
env: | |
JOB_TYPE: BUILD | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Debug | |
run: xcodebuild -jobs 1 -configuration Debug -arch x86_64 SYMROOT=$PWD/build | |
- name: Build Release | |
run: xcodebuild -jobs 1 -configuration Release -arch x86_64 SYMROOT=$PWD/build | |
- name: Zip Debug Build | |
run: zip -r build/Debug.zip build/Debug | |
- name: Zip Release Build | |
run: zip -r build/Release.zip build/Release | |
- name: Upload to Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Artifacts | |
path: build/*.zip | |
- name: Upload to Release | |
if: github.event_name == 'release' | |
uses: svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: build/*.zip | |
tag: ${{ github.ref }} | |
file_glob: true |