Skip to content

Commit

Permalink
Fix publish action on CI pipeline
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 10, 2024
1 parent 8147caf commit f5e7107
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 f5e7107

Please sign in to comment.