-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: upload apk to latest release after uploading to playstore (WPB-86…
…45) (#3203)
- Loading branch information
1 parent
245730a
commit dac4d40
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: "Prod build" | |
|
||
on: | ||
release: | ||
types: [created] | ||
types: [ created ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.release.tag_name }} | ||
|
@@ -117,3 +117,7 @@ jobs: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
build-flavour: prod | ||
build-variant: compatrelease | ||
- name: Attach APK to release | ||
uses: softprops/[email protected] | ||
with: | ||
files: app/build/outputs/apk/prodCompatRelease/*.apk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ jobs: | |
npx [email protected] -t "$PREVIOUS_TAG...$CURRENT_TAG" | ||
- name: 'Attach changelog to tag' | ||
uses: softprops/action-gh-release@v2 | ||
uses: softprops/action-gh-release@v2.0.7 | ||
env: | ||
GITHUB_TOKEN: ${{github.token}} | ||
with: | ||
|