Skip to content

TEv2 tools v1.1.1

TEv2 tools v1.1.1 #8

Workflow file for this run

name: Publish package to Package Registries
on:
release:
types: [published]
jobs:
# github:
# name: Publish to GitHub Package Manager
# runs-on: ubuntu-latest
# permissions:
# contents: read
# packages: write
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: "18.x"
# registry-url: "https://npm.pkg.github.com"
# cache: "npm"
# scope: "@tno-terminology-design"
# - run: |
# npm ci
# npm run build
# npm publish --workspaces --access public
# env:
# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
npm:
name: Publish to Node Package Manager
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
cache: "npm"
scope: "@tno-terminology-design"
- run: |
npm ci
npm run build
npm publish --workspaces --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}