Skip to content

Commit

Permalink
Fixing create tag in github action script + release 0.6.26 (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdametto authored Mar 15, 2024
1 parent 34860ce commit 37b2d7e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:

- name: Create tag
if: steps.check.outputs.changed == 'true'
run: echo y | ./devtools/create_tag.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name "GitHub Actions"
git config user.email "github-actions@users.noreply.github.com"
echo y | ./devtools/create_tag.sh
- name: Publish to npm
if: steps.check.outputs.changed == 'true'
Expand Down

0 comments on commit 37b2d7e

Please sign in to comment.