Skip to content

Publish Build System #15

Publish Build System

Publish Build System #15

name: Publish Build System
on:
workflow_dispatch:
jobs:
publish-build-system:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
ref: version-4
# setup nodejs
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
cache-dependency-path: package-lock.json
# Runs a single command using the runners shell
- name: Run a one-line script
run: |
cd tools/buildsystem
npm install
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}