mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
simplified release workflow tree
This commit is contained in:
parent
aad833b266
commit
5a8eee10a4
1 changed files with 8 additions and 3 deletions
11
.github/workflows/create_release.yml
vendored
11
.github/workflows/create_release.yml
vendored
|
@ -121,7 +121,7 @@ jobs:
|
||||||
|
|
||||||
create-google-play-release:
|
create-google-play-release:
|
||||||
name: Create Google Play release
|
name: Create Google Play release
|
||||||
needs: [build-android, generate-release-notes]
|
needs: [create-github-release]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: false
|
if: false
|
||||||
steps:
|
steps:
|
||||||
|
@ -191,7 +191,7 @@ jobs:
|
||||||
|
|
||||||
create-app-store-release:
|
create-app-store-release:
|
||||||
name: Create App Store release
|
name: Create App Store release
|
||||||
needs: [build-ios, generate-release-notes]
|
needs: [create-github-release]
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
if: false
|
if: false
|
||||||
steps:
|
steps:
|
||||||
|
@ -200,7 +200,12 @@ jobs:
|
||||||
cleanup:
|
cleanup:
|
||||||
name: Cleanup
|
name: Cleanup
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
needs: [create-github-release, create-google-play-release]
|
needs:
|
||||||
|
[
|
||||||
|
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