Skip to content
This repository has been archived by the owner on Jun 22, 2023. It is now read-only.

Commit

Permalink
build: try fixing release upload again
Browse files Browse the repository at this point in the history
  • Loading branch information
d-Rickyy-b committed Jun 15, 2021
1 parent dc0d57e commit 666f52c
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions .github/workflows/deploy_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,23 @@ jobs:
BUILD_TOOLS_VERSION: "30.0.2"

# Upload bundle, apk and mapping to release
- name: Upload artifacts to GitHub release
uses: Roang-zero1/github-upload-release-artifacts-action@master
- name: Upload apk to release
uses: svenstaro/upload-release-action@v2
with:
args:
- ${{steps.sign_app.outputs.signedReleaseFile}}
- ${{steps.sign_bundle.outputs.signedReleaseFile}}
- app/build/outputs/mapping/release/mapping.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ steps.sign_app.outputs.signedReleaseFile }}
tag: ${{ githitub.ref }}

- name: Upload bundle to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ steps.sign_bundle.outputs.signedReleaseFile }}
tag: ${{ github.ref }}

- name: Upload mapping to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: app/build/outputs/mapping/release/mapping.txt
tag: ${{ github.ref }}

0 comments on commit 666f52c

Please sign in to comment.