Skip to content

Commit

Permalink
fixing test releases
Browse files Browse the repository at this point in the history
  • Loading branch information
walter-iriusrisk authored Oct 2, 2023
1 parent c15a9fd commit f632fc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-apishell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

publish-to-pypi:
name: Publish Python distro to PyPi
if: (!contains(github.ref, 'refs/tags/*-test'))
if: ${{ (!contains(github.ref, '-test')) }}
needs:
- build
runs-on: ubuntu-latest
Expand All @@ -64,7 +64,7 @@ jobs:

publish-to-testpypi:
name: Publish Python distro to TestPyPi
if: contains(github.ref, 'refs/tags/*-test')
if: ${{ contains(github.ref, '-test') }}
needs:
- build
runs-on: ubuntu-latest
Expand Down

0 comments on commit f632fc6

Please sign in to comment.