Skip to content

Commit

Permalink
fix: ?
Browse files Browse the repository at this point in the history
  • Loading branch information
ssut committed Aug 25, 2024
1 parent 270ccc7 commit 8a09b50
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ permissions:
pull-requests: read

env:
projname: Matchumbeop
projname: "Matchumbeop"
beta-channel-name: "beta"

jobs:
Expand Down Expand Up @@ -138,7 +138,9 @@ jobs:
cd Matchumbeop
pod install
- name: Build and archive # create archive
run: xcodebuild clean archive -workspace Matchumbeop/${{ env.projname }}.xcworkspace -scheme ${{ env.projname }} -archivePath ${{ env.projname }} -destination 'generic/platform=macOS'
run: |
xcodebuild archive -workspace Matchumbeop/${{ env.projname }}.xcworkspace -list
xcodebuild clean archive -workspace Matchumbeop/${{ env.projname }}.xcworkspace -scheme ${{ env.projname }} -archivePath ${{ env.projname }} -destination 'generic/platform=macOS'
- name: Export app # create .app
run: xcodebuild -exportArchive -archivePath "${{ env.projname }}.xcarchive" -exportPath Release -exportOptionsPlist ".github/releaser/export_options.plist"
- name: Zip app # zip .app
Expand Down

0 comments on commit 8a09b50

Please sign in to comment.