Skip to content

Commit 358dd0f

Browse files
committed
ci: add node auth token
1 parent 0ea5358 commit 358dd0f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,6 @@ jobs:
368368
pull-requests: write
369369
runs-on: ubuntu-latest
370370
outputs:
371-
docker_image_digest: ${{ steps.docker_push.outputs.digest }}
372-
version: ${{ steps.docker_meta.outputs.version }}
373371
new_release_published: ${{ steps.semantic.outputs.new_release_published }}
374372
steps:
375373
- name: Generate release bot app token
@@ -411,6 +409,7 @@ jobs:
411409
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
412410
env:
413411
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
412+
NODE_AUTH_TOKEN: ${{ steps.generate_token.outputs.token }}
414413
SEMANTIC_RELEASE_PACKAGE: ${{ github.event.repository.name }}
415414
GIT_AUTHOR_EMAIL: "${{ steps.bot-user-id.outputs.user-id }}+${{ steps.generate_token.outputs.app-slug }}[bot]@users.noreply.github.com"
416415
GIT_COMMITTER_EMAIL: "${{ steps.bot-user-id.outputs.user-id }}+${{ steps.generate_token.outputs.app-slug }}[bot]@users.noreply.github.com"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"build:cargo": "node build.js",
88
"build:ts": "tsc",
9-
"build": "npm run build:ts && npm run build:cargo",
9+
"build": "npm run build:ts",
1010
"build:dev": "npm run build:ts && npm run build:cargo -- dev",
1111
"test:cargo": "cargo test",
1212
"test:js": "jest",

0 commit comments

Comments
 (0)