Skip to content

Commit

Permalink
fix artifact paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Armin Jazi committed May 16, 2024
1 parent 69a9b5d commit a4ac0a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish-github-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: lib
path: dist


publish-gpr:
Expand All @@ -38,7 +38,7 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: build-artifacts
path: lib
path: dist
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "@openreplyde/web-docker-vite-plugin",
"version": "1.1.0",
"type": "module",
"main": "lib/plugin.js",
"main": "dist/plugin.umd.cjs",
"files": [
"lib/**/*"
"dist/**/*"
],
"module": "./dist/plugin.js",
"exports": {
Expand Down

0 comments on commit a4ac0a8

Please sign in to comment.