Skip to content

fix(repo): fix npm auth #3

fix(repo): fix npm auth

fix(repo): fix npm auth #3

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*.*.*'
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install
- name: Auth
run: npm config set _authToken=${{ secrets.NPM_TOKEN }}
- name: Build
run: npm publish dist/libs/ngx-rxjs-zone-scheduler