mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
Compare commits
2 commits
a7a8fe2a2e
...
be98e8cf9e
Author | SHA1 | Date | |
---|---|---|---|
|
be98e8cf9e | ||
|
283bba6ec2 |
1 changed files with 13 additions and 7 deletions
20
.github/workflows/cd_prod.yml
vendored
20
.github/workflows/cd_prod.yml
vendored
|
@ -5,6 +5,8 @@
|
||||||
|
|
||||||
name: Build prod .aab & .apk
|
name: Build prod .aab & .apk
|
||||||
|
|
||||||
|
run-name: Release ${{ inputs.version }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
|
@ -22,13 +24,6 @@ jobs:
|
||||||
runs-on: macos-11
|
runs-on: macos-11
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
# - uses: shaunco/ssh-agent@git-repo-mapping
|
|
||||||
# with:
|
|
||||||
# ssh-private-key: |
|
|
||||||
# ${{ secrets.M3_LIGHTMETER_IAP_KEY }}
|
|
||||||
# repo-mappings: |
|
|
||||||
# github.com/vodemn/m3_lightmeter_iap
|
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
@ -151,6 +146,11 @@ jobs:
|
||||||
skipIfReleaseExists: true
|
skipIfReleaseExists: true
|
||||||
tag: "v${{ github.event.inputs.version }}"
|
tag: "v${{ github.event.inputs.version }}"
|
||||||
|
|
||||||
|
- name: Delete no longer used apk artifact
|
||||||
|
uses: geekyeggo/delete-artifact@v2
|
||||||
|
with:
|
||||||
|
name: m3_lightmeter_apk
|
||||||
|
|
||||||
extract-merged-native-libs:
|
extract-merged-native-libs:
|
||||||
name: Extract merged native libraries
|
name: Extract merged native libraries
|
||||||
needs: [build]
|
needs: [build]
|
||||||
|
@ -179,6 +179,12 @@ jobs:
|
||||||
name: m3_lightmeter_release
|
name: m3_lightmeter_release
|
||||||
path: m3_lightmeter_release.zip
|
path: m3_lightmeter_release.zip
|
||||||
|
|
||||||
|
# TODO: this should be moved to `create-google-play-release` step when it is implemented
|
||||||
|
- name: Delete no longer used app bundle artifact
|
||||||
|
uses: geekyeggo/delete-artifact@v2
|
||||||
|
with:
|
||||||
|
name: m3_lightmeter_bundle
|
||||||
|
|
||||||
# TODO: Automate Google Play releases creation
|
# TODO: Automate Google Play releases creation
|
||||||
create-google-play-release:
|
create-google-play-release:
|
||||||
if: false
|
if: false
|
||||||
|
|
Loading…
Reference in a new issue