Skip to content

chore(release): release v1.16.6 #34

chore(release): release v1.16.6

chore(release): release v1.16.6 #34

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
release:
runs-on: ubuntu-latest
steps:
# using `v1` because of: https://github.com/actions/checkout/issues/246
- uses: actions/checkout@v1
- uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn
- name: Build
run: yarn run ci
- name: Publish to NPM
run: yarn run release:publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# Generate changelog for the current release
- name: Generate Changelog
run: |
CHANGELOG=$(npx conventional-changelog -p angular -r 1)
echo "changelog=$CHANGELOG" >> $GITHUB_ENV
- name: Create Github Release
uses: softprops/action-gh-release@v1
with:
files: packages/*/*.vsix
fail_on_unmatched_files: true
body: ${{ env.changelog }}