Skip to content

Commit

Permalink
changed workflow script npm-publish.yml
Browse files Browse the repository at this point in the history
previous one did not work, so I am trying with different one
  • Loading branch information
rafalpiotrowski authored Mar 18, 2024
1 parent e62db70 commit c2334d7
Showing 1 changed file with 13 additions and 23 deletions.
36 changes: 13 additions & 23 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,18 @@
name: npm-publish
on:
push:
branches:
- main # Change this to your default branch
branches: main

jobs:
npm-publish:
name: npm-publish
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: 20
- name: Publish if version has been updated
uses: pascalgn/npm-publish-action@51fdb4531e99aac1873764ef7271af448dc42ab4
with: # All of theses inputs are optional
tag_name: "v%s"
tag_message: "v%s"
commit_pattern: "^Release (\\S+)"
# commit_user: "" # if not provided will extract from the repo
# commit_email: "" # if not provided will extract from the repo
# publish_with: "npm" # options are `yarn`, `npm` or `skip`
env: # More info about the environment variables in the README
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Leave this as is, it's automatically generated
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} # You need to set this in your repo settings
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm ci
- run: npm test
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_AUTH_TOKEN }}

0 comments on commit c2334d7

Please sign in to comment.