Skip to content

Commit

Permalink
chore: fix release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Oct 11, 2024
1 parent 05db97b commit f2a7ccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
fi
echo "BRANCHES=$BRANCHES" >> $GITHUB_ENV
- uses: cycjimmy/semantic-release-action@61680d0e9b02ff86f5648ade99e01be17f0260a4 # v4.0.0
if: ${{ inputs.version == '' }}
if: ${{ inputs.version }} == ''
id: semantic
with:
branches: ${{ env.BRANCHES }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create tag
if: ${{ inputs.version != '' }}
if: ${{ inputs.version }} != ''
uses: actions/github-script@v5
with:
script: |
Expand Down

0 comments on commit f2a7ccb

Please sign in to comment.