Skip to content

Commit

Permalink
Do not upload iso/qcow/box with the artifacts - do not download all a…
Browse files Browse the repository at this point in the history
…rtifacts for test (#75)
  • Loading branch information
Itxaka authored Mar 28, 2022
1 parent 8d2d6ba commit 6a748f3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: artifacts
path: dist
path: |
dist/artifacts/*
!dist/artifacts/*.iso
!dist/artifacts/*.qcow.gz
!dist/artifacts/*.box
if-no-files-found: error
- uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -66,7 +70,8 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: artifacts
name: iso
path: artifacts
- run: |
ls -liah
ls -liah artifacts
Expand Down Expand Up @@ -108,7 +113,8 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: artifacts
name: iso
path: artifacts
- run: |
ls -liah
ls -liah artifacts
Expand Down Expand Up @@ -140,7 +146,8 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v2
with:
name: artifacts
name: box
path: artifacts
- run: |
ls -liah
ls -liah artifacts
Expand Down

0 comments on commit 6a748f3

Please sign in to comment.