Skip to content

Commit d78059b

Browse files
committed
fix(cd): attempt to package the artifact in the usual way
1 parent 9e11772 commit d78059b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/igniteui-react-examples-cd.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ jobs:
9494
run: npm run build
9595

9696
- name: Package samples browser
97-
run: zip -r ${{ github.workspace }}/react-demos.zip browser/build/.
97+
run: |
98+
cd browser/build
99+
zip -r ${{ github.workspace }}/react-demos.zip ./
98100
99101
- name: Publish pipeline artifact
100102
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)