mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-24 16:30:40 +00:00
upload ipa to app store
This commit is contained in:
parent
257403455c
commit
2fb3bdb970
1 changed files with 19 additions and 9 deletions
28
.github/workflows/create_release.yml
vendored
28
.github/workflows/create_release.yml
vendored
|
@ -195,23 +195,33 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: m3_lightmeter_appbundle
|
name: m3_lightmeter_appbundle
|
||||||
|
|
||||||
create-app-store-release:
|
upload-to-app-store:
|
||||||
name: Create App Store release
|
name: Upload to App Store
|
||||||
needs: [generate-release-notes]
|
needs: [generate-release-notes]
|
||||||
if: false
|
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
steps:
|
steps:
|
||||||
- run: echo "TODO"
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: Download ipa
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: m3_lightmeter_ipa
|
||||||
|
|
||||||
|
- name: Upload app to TestFlight
|
||||||
|
uses: apple-actions/upload-testflight-build@v1
|
||||||
|
with:
|
||||||
|
app-path: "lightmeter.ipa"
|
||||||
|
issuer-id: ${{ secrets.APP_STORE_ISSUER_ID }}
|
||||||
|
api-key-id: ${{ secrets.APP_STORE_API_KEY_ID }}
|
||||||
|
api-private-key: ${{ secrets.APP_STORE_API_KEY }}
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
name: Cleanup
|
name: Cleanup
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
needs:
|
needs:
|
||||||
[
|
[create-github-release, create-google-play-release, upload-to-app-store]
|
||||||
create-github-release,
|
|
||||||
create-google-play-release,
|
|
||||||
create-app-store-release,
|
|
||||||
]
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Delete release notes artifact
|
- name: Delete release notes artifact
|
||||||
|
|
Loading…
Reference in a new issue