mirror of
https://github.com/kunkunsh/kunkun-ext-vscode.git
synced 2025-04-03 18:16:42 +00:00
25 lines
400 B
YAML
25 lines
400 B
YAML
name: Publish
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: latest
|
|
- name: Publish package
|
|
run: |
|
|
bun install
|
|
bunx jsr publish --allow-slow-types
|