Skip to content

Bumped the package version #4

Bumped the package version

Bumped the package version #4

Workflow file for this run

name: Publish Package to npmjs
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
# Defaults to the user or organization that owns the workflow file
scope: '@waltertamboer'
- run: yarn
- run: yarn run build
- run: yarn publish --access public --patch
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Bumped the package version after publishing.