Skip to content

Publish Package to GitHub Packages #4

Publish Package to GitHub Packages

Publish Package to GitHub Packages #4

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://npm.pkg.github.com'
cache: yarn
# Defaults to the user or organization that owns the workflow file
scope: '@codecontrol-oy'
- name: Install dependencies 📦️
run: yarn install --immutable
- name: Build 🔨
run: yarn build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}