Skip to content

Commit aa142be

Browse files
authored
Remove publish step from workflow (#12)
1 parent 44e658d commit aa142be

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,3 @@ jobs:
2424
2525
- name: Run tests
2626
run: npm run test
27-
28-
publish:
29-
needs: ci
30-
31-
runs-on: ubuntu-latest
32-
33-
if: github.ref == 'refs/heads/main' && needs.ci.result == 'success'
34-
35-
steps:
36-
- name: Install NPM login utility
37-
run: npm install -g npm-cli-login
38-
39-
- name: Login to public NPM registry
40-
run: npm-cli-login -u ${{ secrets.NPM_USERNAME }} -p ${{ secrets.NPM_PASSWORD }} -e ${{ secrets.NPM_EMAIL }}
41-
42-
- name: Publish
43-
run: npm run publish

0 commit comments

Comments
 (0)