Skip to content

Commit

Permalink
chore: test gha
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymonSzyszkowski committed Dec 17, 2024
1 parent 2fd5204 commit a85120c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
publish-to-pypi:
needs: release
name: Publish 📦 in PyPI
if: github.ref == 'refs/heads/main' && ${{needs.release.outputs.released == 'true'}}
if: ${{github.ref == 'refs/heads/main' && needs.release.outputs.released == 'true'}}
runs-on: ubuntu-latest
# environment:
# name: pypi
Expand All @@ -90,7 +90,7 @@ jobs:
publish-to-testpypi:
name: Publish 📦 in TestPyPI
needs: release
if: github.ref == 'refs/heads/main' && ${{needs.release.outputs.released == 'true'}}
if: ${{github.ref == 'refs/heads/main' && needs.release.outputs.released == 'true'}}
runs-on: ubuntu-latest

environment:
Expand All @@ -114,7 +114,7 @@ jobs:
documentation:
needs: release
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && ${{needs.release.outputs.released == 'true'}}
if: ${{github.ref == 'refs/heads/main' && needs.release.outputs.released == 'true'}}
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit a85120c

Please sign in to comment.