Skip to content

Commit

Permalink
ci: only save relevant build files as artefact
Browse files Browse the repository at this point in the history
  • Loading branch information
angelo-v committed Nov 23, 2022
1 parent 91629ec commit c9c1a67
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,20 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: core-build
path: core
path: |
core/dist/
core/lib/
core/types/
core/package.json
retention-days: 1
- name: Save @pod-os/elements build
uses: actions/upload-artifact@v3
with:
name: elements-build
path: elements
path: |
elements/dist/
elements/loader/
elements/package.json
retention-days: 1

npm-publish-core-build:
Expand Down

0 comments on commit c9c1a67

Please sign in to comment.