Skip to content

publish-package

publish-package #15

Workflow file for this run

name: Publish Package
on:
workflow_dispatch:
inputs:
increment:
type: choice
description: Version increment (defaults to minor)
default: minor
options:
- major
- minor
- patch
- premajor
- preminor
- prepatch
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
# scope: '@pufferfinance'
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: latest
run_install: true
- name: Setup git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Build
run: pnpm build
- name: Publish package
run: pnpm release --increment ${{ inputs.increment }}
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}