Skip to content

Commit

Permalink
Fix publish action on CI pipeline (#4)
Browse files Browse the repository at this point in the history
Removing quotes from tags key on CI pipeline because that's making it from not trigger when is created and pushed a new tag and therefore the pipeline wont run
  • Loading branch information
ctw-joao-luis authored Oct 11, 2024
1 parent 8147caf commit 9ef980f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches: main
tags: "v*"
tags: v*
pull_request:
branches: "*"

Expand All @@ -28,4 +28,4 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

0 comments on commit 9ef980f

Please sign in to comment.