Skip to content

chore: release v3.5.0 #7

chore: release v3.5.0

chore: release v3.5.0 #7

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 6.23.5
- name: Use Node.js v16
uses: actions/setup-node@v2
with:
node-version: v16
registry-url: https://registry.npmjs.org/
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm turbo run build
- name: Publish to NPM
run: pnpm -r publish --access public --tag next --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Create changelog
run: npx conventional-github-releaser -p angular
env:
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.GITHUB_TOKEN}}