Skip to content

chore: lint yaml

chore: lint yaml #14

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
- uses: pnpm/action-setup@v2
- name: Set node
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
registry-url: https://registry.npmjs.org
- name: Publish github
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Install
- run: pnpm install
- name: Publish npm
- run: pnpm publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}