Skip to content

Commit

Permalink
ci: add publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vboechat committed May 16, 2024
1 parent c4562e4 commit eaa0cf6
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Publish to NPM

on:
workflow_dispatch:
inputs:
version:
description: 'The version to be published'
required: true

jobs:
publish:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
registry-url: 'https://registry.npmjs.org/'

- name: Install dependencies
run: yarn install

- name: Build project
run: yarn build

- name: Bump version in package.json
run: |
NEW_VERSION=${{ github.event.inputs.version }}
jq --arg version "$NEW_VERSION" '.version = $version' package.json > package.tmp.json
mv package.tmp.json package.json
- name: Publish to NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Commit version bump
run: |
NEW_VERSION=${{ github.event.inputs.version }}
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git commit -am "Publish version $NEW_VERSION"
git push origin HEAD:master

0 comments on commit eaa0cf6

Please sign in to comment.