Skip to content

Commit

Permalink
chore: set up NPM auto publish on commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mrderyk committed May 3, 2024
1 parent 06f9f03 commit bdeaafe
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: npm-publish
on:
push:
branches:
- chore/auto_publish # Change this to your default branch
jobs:
check-version-change:
name: check-version-change
runs-on: ubuntu-latest
outputs:
version: ${{ steps.check.outputs.triggered }}
did-version-change: ${{ steps.check.outputs.changed }}
steps:
- name: Checkout repository
uses: actions/checkout@v2

# Determine if version has changed
- name: Check version changes
uses: EndBug/version-check@v2
id: check

publish-to-npm:
name: publish-to-npm
runs-on: ubuntu-latest
needs: [check-version-change]
if: needs.check-version-change.outputs.did-version-change == 'false'
steps:
- name: Checkout repository
uses: actions/checkout@v2

# Draft a release if version name changed
- name: Draft release
run: 'gh release create v${{ needs.check-version-change.outputs.version }} -d --notes ""'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Node.js for NPM
uses: actions/setup-node@v4
with:
registry-url: "https://registry.npmjs.org"

- name: Build lib
run: "npm i && npm run buildLib"

- name: Publish package to NPM
run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

0 comments on commit bdeaafe

Please sign in to comment.