Build and Publish NPM package #73
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 Publish NPM package" | |
on: | |
release: | |
types: [published] | |
permissions: read-all | |
jobs: | |
build_and_publish: | |
name: "Publish ccf-app package to NPM" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Get release number from git tag (release) or latest (branch) | |
run: | | |
echo "version=${GITHUB_REF#refs/tags/ccf-}" >> $GITHUB_OUTPUT | |
id: tref | |
- name: Fetch NPM Package from release | |
run: | | |
cd js/ccf-app | |
wget https://github.com/microsoft/CCF/releases/download/ccf-${{steps.tref.outputs.version}}/microsoft-ccf-app-${{steps.tref.outputs.version}}.tgz | |
- name: Publish NPM Package to https://www.npmjs.com/package/@microsoft/ccf-app | |
run: | | |
set -ex | |
cd js/ccf-app | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
npm publish microsoft-ccf-app*.tgz --access public |