Skip to content

Commit

Permalink
Update versions to lib version
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasEi committed Jul 26, 2023
1 parent ad77da6 commit 7a6bee4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release-ios-testflight.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
name: release-ios-testflight

# This workflow builds, archives, exports, validates and uploads your ios app.
# The version from tag or input is only used for artifact names.
# Bump the versions in `mobile/ios-src/Info.plist` to change the version of your app bundle.

# Special setup and Apple Developer Program membership (99$/year) is required for this workflow! (docs are in work; Todo)

on:
push:
tags:
Expand All @@ -13,8 +19,6 @@ on:

# ToDo: adapt names
env:
# heads-up: this value is used as a pattern in an sed command as a workaround for a trunk issue
# if you use special characters, take a look at the 'Make paths relative' step in the 'build-web' job
GAME_EXECUTABLE_NAME: bevy_game
GAME_OSX_APP_NAME: BevyGame

Expand Down Expand Up @@ -84,7 +88,7 @@ jobs:
- name: Upload ipa
uses: actions/upload-artifact@v3
with:
path: ${{ runner.temp }}/export/mobile.ipa
path: ${{ runner.temp }}/export/
name: ${{ env.GAME_EXECUTABLE_NAME }}_${{ env.VERSION }}_ios
- name: decode API key
env:
Expand Down
4 changes: 2 additions & 2 deletions mobile/ios-src/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>0.1.0</string>
<key>CFBundleIconName</key>
<string>AppIcon</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>0.1.0</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiresFullScreen</key>
Expand Down

0 comments on commit 7a6bee4

Please sign in to comment.