Skip to content

Commit

Permalink
Upload archive and release correct ipa
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasEi committed Jul 26, 2023
1 parent 7a6bee4 commit 519d03a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/release-ios-testflight.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ jobs:
run: |
cd mobile
make xcodebuild-archive-release
- name: Upload archive
uses: actions/upload-artifact@v3
with:
path: mobile/Actions.xcarchive
name: ${{ env.GAME_EXECUTABLE_NAME }}_archive_${{ env.VERSION }}
- name: export ipa
env:
EXPORT_PLIST: ${{ secrets.IOS_EXPORT_PRODUCTION }}
Expand All @@ -104,7 +109,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mobile/${{ env.GAME_EXECUTABLE_NAME }}.ipa
file: ${{ runner.temp }}/export/mobile.ipa
asset_name: ${{ env.GAME_EXECUTABLE_NAME }}_${{ env.VERSION }}_ios.ipa
release_name: ${{ env.VERSION }}
overwrite: true
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: mobile/${{ env.GAME_EXECUTABLE_NAME }}.ipa
asset_name: ${{ env.GAME_EXECUTABLE_NAME }}_${{ env.VERSION }}_ios.ipa
asset_name: ${{ env.GAME_EXECUTABLE_NAME }}_${{ env.VERSION }}_unsigned_ios.ipa
release_name: ${{ env.VERSION }}
tag: ${{ env.VERSION }}
overwrite: true
Expand Down
2 changes: 1 addition & 1 deletion build/windows/installer/Package.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Package
Name="BevyGame"
Manufacturer="My Name"
UpgradeCode="132bb59d-de4f-4893-a535-93dfd0597731"
UpgradeCode="12345678-de4f-4893-a535-93dfd0597731"
Version="0.1.0"

Scope="perUserOrMachine">
Expand Down

0 comments on commit 519d03a

Please sign in to comment.