Skip to content

Commit 1ba3c16

Browse files
committed
fix: correct tarball glob in npm publish
1 parent 5cd6b85 commit 1ba3c16

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ jobs:
6464

6565
- name: Publish to npm
6666
run: |
67-
TARBALL=$(pnpm pack)
68-
npm publish "$TARBALL" --provenance --access public --tag ${{ steps.npm-tag.outputs.tag }}
67+
pnpm pack
68+
npm publish *.tgz --provenance --access public --tag ${{ steps.npm-tag.outputs.tag }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nuxt-safe-runtime-config",
33
"type": "module",
4-
"version": "0.0.14",
4+
"version": "0.0.15",
55
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
66
"description": "Validate Nuxt runtime config with Standard Schema at build time",
77
"author": {

0 commit comments

Comments
 (0)