Skip to content

πŸŽ‰ For my ally is the Force, and a powerful ally it is #2

πŸŽ‰ For my ally is the Force, and a powerful ally it is

πŸŽ‰ For my ally is the Force, and a powerful ally it is #2

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
- name: Release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --provenance --access public