Update npm version command #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
registry-url: "https://registry.npmjs.org" | |
cache-dependency-path: ./package-lock.json | |
- run: npm install | |
working-directory: . | |
- run: npm run build | |
working-directory: . | |
- run: git config --list | |
- run: git config --list | |
working-directory: . | |
- run: ls -a | |
- run: npm version patch -m "Bump version to %s [skip ci]" --ddd | |
working-directory: . | |
- run: git log -n 20 --pretty=oneline | |
if: always() | |
- run: git diff HEAD | |
- run: npm publish --access public | |
working-directory: . | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Bump version [skip ci]" |