Skip to content

chore: release v2.1.3 #98

chore: release v2.1.3

chore: release v2.1.3 #98

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/[email protected]
- name: Use Node.js v20
uses: actions/setup-node@v3
with:
node-version: v20
registry-url: https://registry.npmjs.org/
cache: pnpm
- run: export DEBUG=conventional-github-releaser && npx conventional-github-releaser -p angular
continue-on-error: false
env:
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.GITHUB_TOKEN}}
- run: pnpm i
- name: PNPM build
run: pnpm run build
- name: Publish to NPM
run: pnpm -r publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}