Skip to content

Commit

Permalink
Merge pull request LedgerHQ#80 from LedgerHQ/fbe/fix_get_app_manifest
Browse files Browse the repository at this point in the history
Fix manifest upload
  • Loading branch information
fbeutin-ledger authored Jun 19, 2024
2 parents c8d599f + 81e86b3 commit 92b5236
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/_get_app_manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,17 @@ jobs:
- name: Upload app manifest
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.upload_manifest_artifact_name }}
name: ${{ inputs.upload_manifest_artifact_name }}-${{ matrix.device }}
path: ./manifest_*.json
if-no-files-found: error

merge_artifacts:
name: Merge build artifacts
needs: get_app_manifest
runs-on: ubuntu-latest
steps:
- uses: actions/upload-artifact/merge@v4
with:
name: ${{ inputs.upload_manifest_artifact_name }}
pattern: ${{ inputs.upload_manifest_artifact_name }}-*
delete-merged: true

0 comments on commit 92b5236

Please sign in to comment.