Skip to content

chore: release v0.5.4 #33

chore: release v0.5.4

chore: release v0.5.4 #33

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set node
uses: actions/setup-node@v4
with:
node-version: 20.8.0
registry-url: 'https://registry.npmjs.org'
- name: Setup
run: npm i -g pnpm
- name: Install Dependencies
run: pnpm install
- name: Generate Changelog
run: pnpm dlx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Publish to NPM
run: pnpm run publish:ci
env:
NODE_AUTH_TOKEN: ${{ secrets.VINICUNCA_NPM_TOKEN }}