Skip to content

Build and publish to NPM #25

Build and publish to NPM

Build and publish to NPM #25

Workflow file for this run

on:
workflow_run:
workflows: [Run unit tests]
types: [completed]
branches: [master]
name: Build and publish to NPM
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: 'https://registry.npmjs.org'
# We only run the remaining (remote-touching) steps if the version has actually changed.
- name: Extract package versions
shell: bash
run: |
current_version=$(npm pkg get version | sed 's/"//g')
echo "NEW_JASPAGATE_VERSION=${current_version}" >> $GITHUB_ENV
old_version=$(npm view jaspagate version || echo "0.0.0")
update=0 && [[ $old_version != $current_version ]] && update=1
echo "UPDATE_JASPAGATE=${update}" >> $GITHUB_ENV
echo "Current version is ${current_version} (published ${old_version})"
- name: Publish to NPM
if: env.UPDATE_JASPAGATE == 1
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Tagging the release
if: env.UPDATE_JASPAGATE == 1
uses: actions/github-script@v5
with:
script: |
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/' + process.env.NEW_JASPAGATE_VERSION,
sha: context.sha
})