Skip to content

Merge pull request #175 from codelicia/renovate/commander-13.x #141

Merge pull request #175 from codelicia/renovate/commander-13.x

Merge pull request #175 from codelicia/renovate/commander-13.x #141

Workflow file for this run

name: npm-publish
on:
push:
branches:
- master
jobs:
npm-publish:
name: npm-publish
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 10.0.0
- name: Publish if version has been updated
uses: pascalgn/npm-publish-action@v1
with:
tag_name: "v%s"
tag_message: "v%s"
commit_pattern: "^Release version (\\S+)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}