mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
enabled releases
This commit is contained in:
parent
f05be2ff39
commit
7fa781f4ca
1 changed files with 4 additions and 5 deletions
9
.github/workflows/create_release.yml
vendored
9
.github/workflows/create_release.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
||||||
build-android:
|
build-android:
|
||||||
name: Build Android (.${{ matrix.binary-type }})
|
name: Build Android (.${{ matrix.binary-type }})
|
||||||
needs: [run-integration-tests]
|
needs: [run-integration-tests]
|
||||||
if: always() && (needs.run-integration-tests.result == 'success' || needs.run-integration-tests.result == 'skipped')
|
if: ${{ always() && !failure() && !cancelled() }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
binary-type: [apk, appbundle]
|
binary-type: [apk, appbundle]
|
||||||
|
@ -53,7 +53,7 @@ jobs:
|
||||||
build-ios:
|
build-ios:
|
||||||
name: Build iOS (.ipa)
|
name: Build iOS (.ipa)
|
||||||
needs: [run-integration-tests]
|
needs: [run-integration-tests]
|
||||||
if: always() && (needs.run-integration-tests.result == 'success' || needs.run-integration-tests.result == 'skipped')
|
if: false # TODO(@vodemn) implement ipa uploading to App Store
|
||||||
uses: ./.github/workflows/build_ipa.yml
|
uses: ./.github/workflows/build_ipa.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
|
@ -63,6 +63,7 @@ jobs:
|
||||||
generate-release-notes:
|
generate-release-notes:
|
||||||
name: Generate release notes
|
name: Generate release notes
|
||||||
needs: [build-android, build-ios]
|
needs: [build-android, build-ios]
|
||||||
|
if: ${{ always() && !failure() && !cancelled() }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Generate release notes
|
- name: Generate release notes
|
||||||
|
@ -80,7 +81,6 @@ jobs:
|
||||||
name: Create Github release
|
name: Create Github release
|
||||||
needs: [generate-release-notes]
|
needs: [generate-release-notes]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: false
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
|
@ -130,7 +130,6 @@ jobs:
|
||||||
name: Create Google Play release
|
name: Create Google Play release
|
||||||
needs: [generate-release-notes]
|
needs: [generate-release-notes]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: false
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
|
@ -199,8 +198,8 @@ jobs:
|
||||||
create-app-store-release:
|
create-app-store-release:
|
||||||
name: Create App Store release
|
name: Create App Store release
|
||||||
needs: [generate-release-notes]
|
needs: [generate-release-notes]
|
||||||
runs-on: macos-13
|
|
||||||
if: false
|
if: false
|
||||||
|
runs-on: macos-13
|
||||||
steps:
|
steps:
|
||||||
- run: echo "TODO"
|
- run: echo "TODO"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue