Publish node REST client package #7
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] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: 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 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
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: | | |
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 | |
- name: Publish package to GitHub Packages | |
run: | | |
cd clients/node | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |