mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-12-04 21:30:39 +00:00
Compare commits
No commits in common. "8e03d3e40008ff22a56d0b88e17f246b80686b7e" and "4874dd336827d134e7d6613c79eac12048b55ad6" have entirely different histories.
8e03d3e400
...
4874dd3368
2 changed files with 12 additions and 7 deletions
17
.github/workflows/create_release.yml
vendored
17
.github/workflows/create_release.yml
vendored
|
@ -26,7 +26,7 @@ on:
|
|||
description: "Run integration tests"
|
||||
required: true
|
||||
type: boolean
|
||||
default: false
|
||||
default: true
|
||||
|
||||
jobs:
|
||||
run-integration-tests:
|
||||
|
@ -80,14 +80,11 @@ jobs:
|
|||
create-github-release:
|
||||
name: Create Github release
|
||||
needs: [generate-release-notes]
|
||||
if: false
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Increment build number & replace version number
|
||||
run: bash ./.github/scripts/increment_build_number.sh ${{ github.event.inputs.version }}
|
||||
|
||||
|
@ -133,6 +130,7 @@ jobs:
|
|||
create-google-play-release:
|
||||
name: Create Google Play release
|
||||
needs: [generate-release-notes]
|
||||
if: false
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
@ -202,6 +200,7 @@ jobs:
|
|||
upload-to-app-store:
|
||||
name: Upload to App Store
|
||||
needs: [generate-release-notes]
|
||||
if: ${{ always() }}
|
||||
runs-on: macos-13
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
@ -214,7 +213,13 @@ jobs:
|
|||
name: m3_lightmeter_ipa
|
||||
|
||||
- name: Upload app to TestFlight
|
||||
run: xcrun altool --upload-app -f lightmeter.ipa -t ios -u ${{ secrets.APP_STORE_USERNAME }} -p ${{ secrets.APP_STORE_PASSWORD }}
|
||||
env:
|
||||
API_KEY: AuthKey_${{ secrets.APP_STORE_API_KEY_ID }}.p8
|
||||
run: |
|
||||
mkdir -p ~/private_keys
|
||||
bash .github/scripts/restore_from_base64.sh "${{ secrets.APP_STORE_API_KEY }}" "${{ env.API_KEY }}"
|
||||
cp "${{ env.API_KEY }}" ~/private_keys
|
||||
xcrun altool --output-format xml --upload-app -f lightmeter.ipa -t ios --apiKey ${{ secrets.APP_STORE_API_KEY_ID }} --apiIssuer ${{ secrets.APP_STORE_ISSUER_ID }}
|
||||
|
||||
cleanup:
|
||||
name: Cleanup
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: lightmeter
|
||||
description: Lightmeter app inspired by Material 3 design system.
|
||||
publish_to: "none"
|
||||
version: 0.17.2+48
|
||||
version: 0.0.1+6
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
|
|
Loading…
Reference in a new issue