Skip to content

Update Rollup config #13

Update Rollup config

Update Rollup config #13

Workflow file for this run

# Name of our action
name: Publish
# The event that will trigger the action
on:
push:
branches: [main]
# What the action will do
jobs:
release:
# The operating system it will run on
runs-on: ubuntu-latest
# The list of steps that the action will go through
steps:
- uses: actions/checkout@v4
- name: Prepare repository
run: git fetch --unshallow --tags
- name: Setup Node.js
uses: actions/setup-node@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install --no-save
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
bun run release