Skip to content

Commit

Permalink
Fix: artifact in publish jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
NobleMajo committed Dec 7, 2024
1 parent 41ac04e commit 0a2ea97
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/auto-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ run-name: Update npm dependencies

on:
schedule:
- cron: '30 12 6,20 * *'
- cron: '30 12 3,17 * *'
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -46,7 +46,9 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: dist
path: |
dist
package*.json
publish-npm:
needs: update-deps
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: dist
path: |
dist
package*.json
publish-npm:
needs: build
Expand Down

0 comments on commit 0a2ea97

Please sign in to comment.