Skip to content

Workflow file for this run

name: Publish Package to npmjs
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: git config --global user.email "wuergler@gmail.com"
- run: git config --global user.name "Michael Wuergler"
- run: npm ci
- name: Extract version from tag
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- run: npm version ${{ env.RELEASE_VERSION }}
- run: npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# This step will only run if all previous steps have succeeded
- name: Create Pull Request for Version Bump
if: success()
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update package version
title: 'chore: update package version to ${{ env.RELEASE_VERSION }}'
body: 'Updates `package.json` version to `${{ env.RELEASE_VERSION }}`.'
branch: version-bump/${{ env.RELEASE_VERSION }}
labels: version-bump
token: ${{ secrets.GITHUB_TOKEN }}
base: master