Skip to content

🚑 (package.json) fix repo url #4

🚑 (package.json) fix repo url

🚑 (package.json) fix repo url #4

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Login to npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm login --auth-type=token
- name: Publish to npm
run: npm publish