We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab15838 commit d7dd47aCopy full SHA for d7dd47a
.github/workflows/vrt.yml
@@ -57,15 +57,15 @@ jobs:
57
- name: Stop storybook
58
if: ${{ always() }}
59
run: kill ${{ steps.storybook.outputs.pid }}
60
- - name: Create snapshots folder
+ - name: Create snapshots.zip
61
run: |
62
- mkdir updated-snapshots
63
if [[ ! -z $(git ls-files --others --exclude-standard --modified) ]]; then
64
- cp $(git ls-files --others --exclude-standard --modified) updated-snapshots
+ git ls-files --others --exclude-standard --modified | zip snapshots -@
65
fi
66
- name: Upload snapshots
67
uses: actions/upload-artifact@v3
68
with:
69
name: snapshots-${{ matrix.shard }}
70
- path: updated-snapshots
+ path: snapshots.zip
71
retention-days: 1
+ if-no-files-found: ignore
0 commit comments