Skip to content

chore: bump pkg version & normalize git repo url #3

chore: bump pkg version & normalize git repo url

chore: bump pkg version & normalize git repo url #3

Workflow file for this run

name: Deployment
on:
push:
branches:
- main
jobs:
release:
name: Build and create release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.12.2
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: bun install
- name: Build project
run: bun run build
- name: Publish package on NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}