diff --git a/.github/workflows/release-ios-testflight.yaml b/.github/workflows/release-ios-testflight.yaml index bcb19d3..3f83cb1 100644 --- a/.github/workflows/release-ios-testflight.yaml +++ b/.github/workflows/release-ios-testflight.yaml @@ -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 }} @@ -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 \ No newline at end of file diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 80644a4..550e0a9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 diff --git a/build/windows/installer/Package.wxs b/build/windows/installer/Package.wxs index ac77984..80791e6 100644 --- a/build/windows/installer/Package.wxs +++ b/build/windows/installer/Package.wxs @@ -3,7 +3,7 @@