Node client v0.5.0 #15
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 node REST client package | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
id-token: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set version from release tag | |
run: | | |
cd clients/node | |
release_tag='${{ github.event.release.tag_name }}' | |
echo "Release tag $release_tag" | |
echo $release_tag | grep -E '^node-client-[0-9]+\.[0-9]+\.[0-9]+$' || { | |
echo 'Release tag must be in the form node-client-\d+\.\d+\.\d+' | |
false | |
} | |
version=${release_tag:12} | |
echo "Will publish version $version" | |
sed -i 's/"version": "0.0.0"/"version": "'$version'"/' package.json | |
echo "version=$version" >> "$GITHUB_ENV" | |
- name: Setup node with private registry | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: npm | |
cache-dependency-path: clients/node/package-lock.json | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@ministryofjustice' | |
- name: Install dependencies | |
run: | | |
cd clients/node | |
npm clean-install --no-audit | |
- name: Run tests | |
run: | | |
cd clients/node | |
npm test | |
- name: Build library | |
run: | | |
cp LICENSE clients/node | |
cd clients/node | |
npm run clean | |
npm run build | |
npm pack | |
mv ministryofjustice-hmpps-non-associations-api-$version.tgz node-client.tgz | |
- name: Upload package to GitHub Release | |
run: | | |
cd clients/node | |
gh release upload ${{ github.event.release.tag_name }} node-client.tgz | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Publish package to GitHub Packages | |
run: | | |
cd clients/node | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup node with public registry | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: npm | |
cache-dependency-path: clients/node/package-lock.json | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@ministryofjustice' | |
- name: Publish package to npmjs.com | |
run: | | |
cd clients/node | |
npm publish --provenance --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |