Skip to content

Commit

Permalink
chore(ci): fix publish job
Browse files Browse the repository at this point in the history
  • Loading branch information
hadrien committed Sep 9, 2024
1 parent 0e4876e commit efbbbba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ jobs:
steps:
- name: 📥 checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🔧 setup uv
uses: ./.github/uv
- name: 📜 semantic release version
run: |
uv run semantic-release --strict version
RET_CODE=$?
RET_CODE=0
uv run semantic-release --strict version || RET_CODE=$?
if [ $RET_CODE -ne 0 ]; then
echo "Nothing to publish"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit efbbbba

Please sign in to comment.