Skip to content

Commit

Permalink
ci: Split upload of testing artifacts (#57)
Browse files Browse the repository at this point in the history
Upload iso, qcow, box and chart images individually so they can be
downloaded easier during development.

Fixes: #37

Signed-off-by: Ettore Di Giacinto <edigiacinto@suse.com>
  • Loading branch information
mudler authored Mar 18, 2022
1 parent 018c029 commit f38d2ef
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,26 @@ jobs:
name: artifacts
path: dist
if-no-files-found: error
- uses: actions/upload-artifact@v2
with:
name: iso
path: dist/artifacts/*.iso
if-no-files-found: warn
- uses: actions/upload-artifact@v2
with:
name: qcow
path: dist/artifacts/*.qcow.gz
if-no-files-found: warn
- uses: actions/upload-artifact@v2
with:
name: box
path: dist/artifacts/*.box
if-no-files-found: warn
- uses: actions/upload-artifact@v2
with:
name: chart
path: dist/artifacts/*.tgz
if-no-files-found: warn
- name: Release space from worker ♻
if: always()
run: |
Expand Down

0 comments on commit f38d2ef

Please sign in to comment.