Skip to content

Automate release

Automate release #6

Workflow file for this run

name: Publish Package
on:
push:
workflow_dispatch:
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"
git config --global user.email "[email protected]"
- name: Build
run: pnpm build
- name: Publish package
# The `--ci` option generates a URL for creating a release.
run: pnpm release --increment prepatch --ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}