TEv2 tools v1.1.1 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |