Skip to content

Commit

Permalink
Update CICD pipeline: fix upload artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
albertogeniola committed Nov 14, 2024
1 parent 1e66ec5 commit e8b4934
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,13 @@ jobs:
prerelease: true
tag_name: dev-${{ github.run_id }}
release_name: PreRelease dev-${{ github.run_id }}
- name: List files
run: |
ls -l
ls -l apk
- name: Upload Release APK
id: upload_release_asset
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: apk/app-debug.apk
asset_path: app-debug.apk
asset_name: MerossConf.apk
asset_content_type: application/zip
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: bundle/app-release.aab
asset_path: app-release.aab
asset_name: MerossPairer.aab
asset_content_type: application/zip

0 comments on commit e8b4934

Please sign in to comment.