From c7581676b6ce01a35d3d3ffefc7eda445958e6ba Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Tue, 20 Oct 2020 09:57:13 +0900 Subject: [PATCH] fix: add missing `npm ci` before `npm publish` (#633) This aims to fix the broken publishing automation on the "Release" workflow. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 47b85b95..968d41a7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,7 @@ jobs: with: node-version: "12" registry-url: "https://registry.npmjs.org" + - run: npm ci - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}