From 8411547e1e9838c5bd8d51b57cc449532cfa9632 Mon Sep 17 00:00:00 2001 From: kobenguyent <7845001+kobenguyent@users.noreply.github.com> Date: Tue, 1 Oct 2024 06:00:14 +0200 Subject: [PATCH] fix: update package version --- .github/workflows/npm-publish.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index be1b463..438e109 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -17,7 +17,14 @@ jobs: with: node-version: 20 registry-url: https://registry.npmjs.org/ + - run: git config --global user.name "GitHub CD bot" + - run: git config --global user.email "github-cd-bot@example.com" - run: npx semantic-release env: - NODE_AUTH_TOKEN: ${{secrets.npm_token}} - GH_TOKEN: ${{ secrets.GH_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # push the version changes to GitHub + - run: git add package.json && git commit -m'update version' && git push + env: + # The secret is passed automatically. Nothing to configure. + github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file