Skip to content

Commit

Permalink
Merge pull request #85 from ryoppippi/feature/ci
Browse files Browse the repository at this point in the history
feat: Add GitHub workflow for jsr
  • Loading branch information
ryoppippi authored Jun 11, 2024
2 parents 0486a6d + 9af15fa commit 6a132bf
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/jsr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: jsr

on:
push:
tags:
- "v*"

permissions:
contents: read
id-token: write

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: bun i --frozen-lockfile
- run: bun run publish
working-directory: packages/unplugin-typia

0 comments on commit 6a132bf

Please sign in to comment.