Add existing to tracked

This commit is contained in:
Jay
2026-08-11 09:53:42 -04:00
parent afe07f3055
commit ffd6e3d73c
8531 changed files with 4396230 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
# .github/workflows/publish.yml
name: Publish
on:
release:
types: [published]
permissions:
id-token: write
contents: read
jobs:
publish_jsr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npx jsr publish
publish_npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish