Skip to content

Allow workflow dispatch #28

Allow workflow dispatch

Allow workflow dispatch #28

Workflow file for this run

name: Release
on:
push:
branches:
- main
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up Node.js 18
uses: actions/setup-node@v3
with:
cache: pnpm
node-version: 18
- name: Install Dependencies
run: pnpm install
- name: Create Release Pull Request
id: changesets
uses: changesets/action@v1
with:
publish: pnpm changeset tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}