Skip to content

Commit

Permalink
ci: publish
Browse files Browse the repository at this point in the history
  • Loading branch information
erich2s committed Mar 16, 2024
1 parent f0a2bba commit 3da0519
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Publish
on:
push:
branches:
- "main"

concurrency: ${{github.workflow}}-${{github.ref}}

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: pnpm setup
uses: pnpm/action-setup@v3
with:
version: 8
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- name: Create Release PR
id: changesets
uses: changesets/action@v1

0 comments on commit 3da0519

Please sign in to comment.