Skip to content

Commit

Permalink
ci: spilt emmc&sdcard to two artifact
Browse files Browse the repository at this point in the history
Signed-off-by: Han Gao <[email protected]>
  • Loading branch information
RevySR committed Mar 24, 2024
1 parent 015c32e commit fc97262
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,13 +172,23 @@ jobs:
sha512sum *.zst > SHA512SUMS
popd
- name: 'Upload Artifact'
- name: 'Upload Artifact EMMC'
uses: actions/upload-artifact@v3
with:
retention-days: 30
name: th1520-${{ env.BOARD }}-${{ env.BUILD_ID }}
path: |
mkimg-th1520/*.zst
mkimg-th1520/*.ext4.zst
mkimg-th1520/SHA256SUMS
mkimg-th1520/SHA512SUMS
- name: 'Upload Artifact SDCARD'
uses: actions/upload-artifact@v3
with:
retention-days: 30
name: th1520-sdcard-${{ env.BOARD }}-${{ env.BUILD_ID }}
path: |
mkimg-th1520/*.img.zst
mkimg-th1520/SHA256SUMS
mkimg-th1520/SHA512SUMS
Expand Down

0 comments on commit fc97262

Please sign in to comment.