Skip to content

Commit

Permalink
fix: actions npm auth (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
o-az authored Jan 22, 2024
1 parent 93e5d9c commit 5535ddb
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ jobs:
- name: 'Install Dependencies'
run: bun install --frozen-lockfile

# this action will take the npm auth token and write it to .npmrc
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'

- name: 'Publish to NPM'
run: |
npm publish --access='public' --no-git-checks
Expand Down
Binary file modified examples/astro/bun.lockb
Binary file not shown.
8 changes: 4 additions & 4 deletions examples/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^2.0.4",
"@astrojs/mdx": "^2.0.5",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.1.3",
"rehype-pretty-code": "^0.12.4",
"shikiji": "^0.9.0",
"astro": "^4.2.1",
"rehype-pretty-code": "^0.12.6",
"shikiji": "^0.10.0",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
Expand Down
Binary file modified website/bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"postcss": "^8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-pretty-code": "^0.12.4",
"rehype-pretty-code": "^0.12.6",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"shikiji": "^0.9.0",
"shikiji": "^0.10.0",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
Expand Down

0 comments on commit 5535ddb

Please sign in to comment.