Skip to content

feat: enhance command handling and help message in main function #13

feat: enhance command handling and help message in main function

feat: enhance command handling and help message in main function #13

Workflow file for this run

name: Publish Package to npmjs
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- uses: gleam-lang/setup-gleam@v1.0.2
with:
gleam-version: "1.9.1"
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: bun install
- run: bun run bundle
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}