Skip to content

0.0.42

0.0.42 #3

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: lts/*
registry-url: https://registry.npmjs.org/
- run: npm i
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "polarove/ci-bot"
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}