From 8dc7f77516f875d15262a9cbf7eb3b7d570a8337 Mon Sep 17 00:00:00 2001 From: Kai Mallea Date: Sun, 12 Apr 2020 14:06:21 -0400 Subject: [PATCH] ci: include NODE_AUTH_TOKEN --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7931466..4064424 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,11 +12,12 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 12 + node-version: "12.x" registry-url: "https://registry.npmjs.org" - run: yarn install - run: yarn build - - run: npx --no-install semantic-release + - run: yarn release env: GH_TOKEN: ${{ secrets.GH_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}