Skip to content

bump faker version to 8.4.1 (#117) #16

bump faker version to 8.4.1 (#117)

bump faker version to 8.4.1 (#117) #16

Workflow file for this run

name: npm release
on:
push:
tags: ["*"]
jobs:
npm-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-node@v2
with:
node-version: 16.x
registry-url: https://registry.npmjs.org
- run: npm install
- run: npm publish --access public
working-directory: ./
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}