Skip to content

Auto publish to npm

Auto publish to npm #4

Workflow file for this run

name: NPM publish
on:
pull_request:
branches: [ master ]
# workflow_dispatch:
# inputs:
# versionType:
# type: choice
# description: Version Type
# required: true
# options:
# - patch
# - minor
# - major
permissions:
contents: write
jobs:
publish:
name: Publishing to NPM
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node JS
uses: actions/setup-node@v2
with:
node-version: 18
registry-url: https://registry.npmjs.org
- run: npm ci
# - run: npm run build
- run: git config --global user.email "y-infra@yandex.ru"
- run: git config --global user.name "y-infra"
- run: npm run release -- --release-as patch
- run: npm publish --dry-run
- run: git push origin master --follow-tags --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}