Skip to content

chore: bump packages and audit fixes (#85) #48

chore: bump packages and audit fixes (#85)

chore: bump packages and audit fixes (#85) #48

Workflow file for this run

name: deploy-workflow
on:
push:
branches:
- main
env:
NODE_VERSION: "16.14.2"
MAIN_BRANCH: "main"
jobs:
deploy_package:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v1
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://registry.npmjs.org/
- name: install packages
run: npm install
- name: deploy to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}