Skip to content

Commit

Permalink
test(workflow): use tarbell instead
Browse files Browse the repository at this point in the history
  • Loading branch information
jharlow committed Oct 11, 2024
1 parent 6651140 commit 734c52b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,13 @@ jobs:
with:
node-version: "20"
cache: "pnpm"
- name: Publish 🚀
- name: Pack the package
run: pnpm pack
- name: Publish tarball to npm 🚀
shell: bash
run: pnpm publish --access public --no-git-checks
run: |-
cat package.json |
jq '.version' |
xargs -I {} pnpm publish zod-to-dynamodb-onetable-schema-{}.tgz --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 734c52b

Please sign in to comment.