Skip to content

Commit

Permalink
Update npm-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
daltonsutton authored Dec 6, 2024
1 parent 9342dce commit e347c2d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: package
path: dist/
path: |
dist/
package.json # Ensure this is at the root in your repository
publish-github:
needs: build
Expand All @@ -27,7 +29,7 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: package
path: dist
path: . # Downloads to the current working directory
- uses: actions/setup-node@v4
with:
node-version: '20'
Expand All @@ -43,7 +45,7 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: package
path: dist
path: . # Downloads to the current working directory
- uses: actions/setup-node@v4
with:
node-version: '20'
Expand Down

0 comments on commit e347c2d

Please sign in to comment.