Bump version to 1.0.0-beta.13 (#305) #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
npm: | |
name: NPM | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Bun | |
uses: oven-sh/setup-bun@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Code Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: bun install | |
- name: Build library | |
run: bun run build | |
- name: Publish to NPM | |
run: npm publish --tag $(npm pkg get version | tr -d '"' | grep -qoE "^\d+\.\d+\.\d+$" && echo 'latest' || echo 'beta') | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
jsr: | |
name: JSR | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: Install Bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Code Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: bun install | |
- name: Generate JSR config | |
run: bun run jsr | |
- name: Publish to JSR | |
run: bunx jsr publish |