3.12.0 #12
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: Build and Release NPM to GPR | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
registry-url: https://npm.pkg.github.com/ | |
scope: '@mitre' | |
- name: Build the NPM Package | |
run: | | |
cd src/typescript_client | |
npm install | |
npm run build | |
- name: Pack all items that are published | |
run: | | |
cd src/typescript_client | |
npm pack | |
# Setup .npmrc file to publish to GitHub Package Registry | |
- uses: actions/setup-node@v3 | |
with: | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@mitre' | |
# Publish emass_client to GitHub Package Registry | |
- name: Publish emass_client to GPR | |
run: | | |
cd src/typescript_client | |
# npm publish mitre-emass_client-*.tgz | |
npm publish --access public mitre-emass_client-*.tgz | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |