Skip to content

Publish Package to GitHub Packages #5

Publish Package to GitHub Packages

Publish Package to GitHub Packages #5

Workflow file for this run

name: Publish Package to GitHub Packages
on:
workflow_dispatch:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
cache: yarn
# Defaults to the user or organization that owns the workflow file
scope: '@codecontrol'
- name: Install dependencies 📦️
run: yarn install --immutable
- name: Build 🔨
run: yarn build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}