Skip to content

Commit

Permalink
fix: upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvictor committed Mar 25, 2023
1 parent 129f817 commit 9ab7a59
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,23 @@ jobs:
uses: borales/actions-yarn@v4
with:
cmd: bundle
- name: Upload production-ready bundle zip
uses: actions/upload-artifact@v3
with:
name: mobile-ota-bundle
path: "*.zip"

release:
name: Release
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: mobile-ota-bundle
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.SINOTRADE_SCONE_GITHUB_TOKEN }}"
automatic_release_tag: "latest"
repo_token: ${{ secrets.SINOTRADE_SCONE_GITHUB_TOKEN }}
prerelease: false
files: |
*.zip

0 comments on commit 9ab7a59

Please # to comment.