Skip to content

HTTPS NPM Publish

HTTPS NPM Publish #2

name: HTTPS NPM Publish
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Harden Runner
uses: h0x0er/harden-runner@debug2
with:
disable-sudo: false
egress-policy: audit
- uses: actions/checkout@v4
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@h0x0er'
- run: cd npm-package && npm ci
- run: cd npm packages && npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}