Skip to content

🔖 Releases v0.1.0 #10

🔖 Releases v0.1.0

🔖 Releases v0.1.0 #10

Workflow file for this run

name: Publish to NPM
on:
push:
paths:
- '**/package.json'
branches:
- main
workflow_dispatch:
jobs:
Build-Publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 20
always-auth: true
- uses: pnpm/[email protected]
name: Install pnpm
id: pnpm-install
with:
version: latest
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
pnpm store path
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/[email protected]
name: Setup pnpm cache
with:
path: |
${{ steps.pnpm-cache.outputs.STORE_PATH }}
node_modules
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install Dependencies
run: pnpm i
- name: Build
run: pnpm run -r build
- name: SetupAuth
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Publish package on NPM 📦
run: pnpm publish -r
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}