diff options
author | Valentin Popov <info@valentineus.link> | 2020-06-18 00:10:47 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 00:10:47 +0300 |
commit | a7aeded00994c56e4a6f24f53944b159be3a253d (patch) | |
tree | 672e1599d2e3598cf28aa90b1db719c620323e6b /.github/workflows/publish.yml | |
parent | adf39edc06ca27c1179751601ad56ea7b89c9ab4 (diff) | |
parent | 2b9c6380f071a3fc6379a41259d9f5198d02be7b (diff) | |
download | eslint-config-a7aeded00994c56e4a6f24f53944b159be3a253d.tar.xz eslint-config-a7aeded00994c56e4a6f24f53944b159be3a253d.zip |
Merge pull request #5 from valentineus/release/2020-06-17
release/2020-06-17
Diffstat (limited to '.github/workflows/publish.yml')
-rw-r--r-- | .github/workflows/publish.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a588b42..4296fa9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/setup-node@v1 with: node-version: '13.x' - - run: yarn install - - run: yarn run build + - run: npm install + - run: npm run build - run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" > ~/.npmrc - run: npm publish |