Update main.yml #12
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: Extract Version | |
id: extract_version | |
run: | | |
VERSION=$(grep CURRENT_PROJECT_VERSION PinConfigurator.xcodeproj/project.pbxproj | awk -F' = ' '{ print $2 }' | tr -d ';' | xargs) | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- 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@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: build/*.zip | |
tag: ${{ github.ref }} | |
file_glob: true | |
name: "Release ${{ env.VERSION }}" | |
body: "Release notes for version ${{ env.VERSION }}" |