Skip to content

Publish to NPM

Publish to NPM #26

Workflow file for this run

on:
workflow_run:
workflows: [Run tests]
types: [completed]
branches: [master]
name: Publish to NPM
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
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_GESEL_VERSION=${current_version}" >> $GITHUB_ENV
old_version=$(npm view gesel version)
update=0 && [[ $old_version != $current_version ]] && update=1
echo "UPDATE_GESEL=${update}" >> $GITHUB_ENV
echo "Current version is ${current_version} (published ${old_version})"
- name: Publish to NPM
if: env.UPDATE_GESEL == 1
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Tagging the release
if: env.UPDATE_GESEL == 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_GESEL_VERSION,
sha: context.sha
})