Skip to content

Commit

Permalink
fix: donwload dist artifacts before publish
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperLeerberg committed Aug 30, 2021
1 parent 017718f commit 7d1c645
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- uses: actions/upload-artifact@main
with:
name: dist artifacts
name: Upload dist artifacts
path: dist

npm-release:
Expand All @@ -45,6 +45,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: Download dist artifacts
path: dist
- uses: JS-DevTools/npm-publish@v1
with:
access: public
Expand Down

0 comments on commit 7d1c645

Please sign in to comment.