Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
benbaker76 authored Jun 24, 2024
1 parent 180782e commit 6f435a2
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,18 @@ jobs:
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/PinConfigurator_Debug.zip build/Debug
- name: Zip Release Build
run: zip -r build/PinConfigurator_Release.zip build/Release
- name: Zip Build
run: zip -r PinConfigurator.zip build
- name: Upload to Artifacts
uses: actions/upload-artifact@v4
with:
name: Artifacts
path: build/*.zip
path: PinConfigurator.zip
- name: Upload to Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/*.zip
file: PinConfigurator.zip
tag: ${{ env.VERSION }}
overwrite: true
file_glob: true

0 comments on commit 6f435a2

Please sign in to comment.