Skip to content

ob-v4.0.2

ob-v4.0.2 #33

Workflow file for this run

name: NPM Publish
on:
release:
types: [ created ]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: 🔐 Harden Runner
uses: step-security/harden-runner@03bee3930647ebbf994244c21ddbc0d4933aab4f # v2.3.0
with:
disable-sudo: true
egress-policy: audit
# allowed-endpoints: >
# api.github.com:443
# fulcio.sigstore.dev:443
# rekor.sigstore.dev:443
# github.com:443
# nodejs.org:443
# registry.npmjs.org:443
# nodejs.org:443
# *.actions.githubusercontent.com:443
# actions.githubusercontent.com:443
# *.githubapp.com:443
# githubapp.com:443
- name: ⚙️ Git Checkout
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- name: ⚙️ Install Node@20
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
with:
node-version: 20
registry-url: https://registry.npmjs.org
- name: ⚙️ Install NPM last version
run: npm install -g npm
- name: ⚙️ Install dependencies
run: npm ci
- name: 📦 Publish in NPM registry
run: |
npm publish --provenance --ignore-scripts --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}