From f7fa54b8da6512963e05ed883da71e2a59a0d95b Mon Sep 17 00:00:00 2001 From: Conicaw Date: Sun, 16 Jul 2023 19:03:06 -0500 Subject: [PATCH] ci(release): specify fake npm token Specify fake npm token since it seems it's required. --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5f8040..b8c50c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,6 +14,8 @@ jobs: uses: actions/setup-node@v3.7.0 with: node-version: '20.x' + env: + NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Checkout uses: actions/checkout@v3.5.3 @@ -44,4 +46,5 @@ jobs: uses: ahmadnassri/action-semantic-release@v2.2.3 env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: fake GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}