From 01e2be35e94724a754f29cf76ce924ee84a20af4 Mon Sep 17 00:00:00 2001 From: Ameir Al-Zoubi Date: Thu, 18 Mar 2021 22:52:34 -0400 Subject: [PATCH] ci: fix ci actions for release --- .github/workflows/node.js.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index c8167b1..14a58ff 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -83,6 +83,8 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - uses: actions/checkout@v2 + with: + token: ${{ secrets.GIT_ACCESS_TOKEN }} - uses: actions/setup-node@v1 with: # latest nodejs LTS @@ -97,5 +99,5 @@ jobs: @semantic-release/changelog @semantic-release/git env: - GITHUB_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}