Skip to content

Commit

Permalink
Add GH Action to publish every main commit to NPM as a patch version (#…
Browse files Browse the repository at this point in the history
…30)

* Add GH Action to publish every main commit to NPM as a patch version

* update actions to v4
  • Loading branch information
jasongwartz authored Mar 30, 2024
1 parent 523f0a4 commit 2a22968
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
on:
workflow_dispatch:
push:
branches: [main]

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency: publish-single-concurrency

# Based on:
# https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages#publishing-packages-to-the-npm-registry
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
registry-url: "https://registry.npmjs.org"

- run: npm ci

- name: Increment npm package version number
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
npm version patch -m "Version bump: v%s"
git push
- run: npm run build

# TODO: publish publicly
# - run: npm publish --access public
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 2a22968

Please sign in to comment.