Update release.yml
This commit is contained in:
parent
d1c26164f8
commit
6267ded21a
1 changed files with 6 additions and 3 deletions
9
.github/workflows/release.yml
vendored
9
.github/workflows/release.yml
vendored
|
@ -41,11 +41,14 @@ jobs:
|
|||
run: npx semantic-release
|
||||
|
||||
- name: Store build artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
run: |
|
||||
find . -not -path "./node_modules/*" -type f -print0 | xargs -0 tar -czvf build-artifacts.tar.gz
|
||||
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: . # Include all files in the artifact
|
||||
path-ignore: node_modules
|
||||
path: build-artifacts.tar.gz
|
||||
|
||||
docker:
|
||||
needs: build
|
||||
|
|
Loading…
Add table
Reference in a new issue