Skip to content

feat: support short cmd to create by template for create-chaos #7

feat: support short cmd to create by template for create-chaos

feat: support short cmd to create by template for create-chaos #7

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: ^7
- name: Set node version
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
cache: "pnpm"
- name: Install deps
run: pnpm install
- name: Build
run: pnpm run build
- name: Publish package
run: pnpm publish -r --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.ACCESS_TOKEN}}