Skip to content

feat(develop): created workflows for linting and publishing after pus… #1

feat(develop): created workflows for linting and publishing after pus…

feat(develop): created workflows for linting and publishing after pus… #1

Workflow file for this run

name: Publish
on:
push:
branches:
- master
jobs:
publish:
name: Publish to npm
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies
run: npm install
- name: Bump version and create Git tag
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
npm version patch -m "chore(release): bump version to %s"
git push --follow-tags
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}