Skip to content

chore(publish): release v1.6.13 #2

chore(publish): release v1.6.13

chore(publish): release v1.6.13 #2

Workflow file for this run

name: Release
on:
push:
tags:
- v**
permissions:
contents: write
jobs:
release-it:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GitHub_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm
- name: Install deps
run: |
echo "public-hoist-pattern[]=@types*" >> .npmrc
pnpm install
- name: Release tp GitHub
if: github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/v')
run: |
pnpm release --no-increment --no-git --github.release --ci --verbose