chore(deps-gha): bump actions/upload-artifact from 3 to 4 (#291)
Also update the name of the artifact by using a dedicated name per OS With actions/upload-artifact@v4, it is not possible to upload to the same named Artifact multiple times.development
parent
99ffdfa29b
commit
a9c1ab6000
|
@ -53,9 +53,9 @@ jobs:
|
||||||
- name: Build Storybook mini-site
|
- name: Build Storybook mini-site
|
||||||
run: npm run build -w packages/html
|
run: npm run build -w packages/html
|
||||||
- name: Upload all examples as artifact
|
- name: Upload all examples as artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: bundles-test-results-${{github.sha}}
|
name: bundles-test-results-${{runner.os}}-${{github.sha}}
|
||||||
path: |
|
path: |
|
||||||
packages/html/dist/
|
packages/html/dist/
|
||||||
packages/ts-example/dist/
|
packages/ts-example/dist/
|
||||||
|
|
|
@ -27,7 +27,7 @@ jobs:
|
||||||
- name: Build website
|
- name: Build website
|
||||||
run: npm run build -w packages/website
|
run: npm run build -w packages/website
|
||||||
- name: Upload website artifact
|
- name: Upload website artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: website-${{github.sha}}
|
name: website-${{github.sha}}
|
||||||
path: |
|
path: |
|
||||||
|
|
Loading…
Reference in New Issue