Skip to content

v2.36.0

v2.36.0 #37

# SPDX-License-Identifier: Apache-2.0
name: Publish Package to npmjs
on:
release:
types: [published]
permissions:
contents: read
defaults:
run:
shell: bash
jobs:
publish-npm-package:
runs-on: hiero-local-node-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Use Node.js 20.x
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Clean install
run: npm ci
- name: Publish npm package
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}