Skip to content

Commit

Permalink
Updated xcodebuild-nonappstore.yml to fix error & deprecations, push …
Browse files Browse the repository at this point in the history
…conditions
  • Loading branch information
jpmhouston authored Mar 25, 2024
1 parent cf0d694 commit dc0f366
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/xcodebuild-nonappstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: Build Sign Notarize and Release Cleepp

on:
push:
branches: [ "forkmain" ]
branches-ignore:
- '!forkmain'
tags:
- v*

Expand Down Expand Up @@ -98,7 +99,7 @@ jobs:
run: |
test -e Build/Products/Release/Cleepp.app || exit 1
test -e Build/Products/Release/Cleepp.app/Contents/Info.plist || exit 2
echo "::set-output name=version::$(/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' Build/Products/Release/Cleepp.app/Contents/Info.plist)"
echo "version=$(/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' Build/Products/Release/Cleepp.app/Contents/Info.plist)" >> $GITHUB_OUTPUT
id: version
- name: Build Zip
run: |
Expand All @@ -125,7 +126,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
upload_url: ${{ steps.release.outputs.upload_url }}
asset_path: Build/Products/Release/Cleepp\ ${{ steps.version.outputs.version }}
asset_name: Cleepp\ ${{ steps.version.outputs.version }}
asset_content_type: application/zip

0 comments on commit dc0f366

Please sign in to comment.