From 8738863b3f8b82adcb9cda19f1c8f16684f20795 Mon Sep 17 00:00:00 2001 From: Saransh Malik Date: Thu, 19 Nov 2020 13:22:15 +0530 Subject: [PATCH] Update cd.yml --- .github/workflows/cd.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 29dfa22..6cc3b85 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -24,14 +24,12 @@ jobs: node-version: 12 # Specifies the registry, this field is required! registry-url: https://registry.npmjs.org/ - # clean install of your projects' deps. We use "npm ci" to avoid package lock changes - - run: npm ci # set up git since we will later push to the repo - run: git config --global user.name "Saranshmalik" - run: git config --global user.email "saranshmalik63@gmail.com" # upgrade npm version in package.json to the tag used in the release. - run: npm version ${{ github.event.release.tag_name }} - # publish to NPM -> there is one caveat, continue reading for the fix + # publish to NPM - run: npm publish env: # Use a token to publish to NPM. See below for how to set it up