Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
masklinn committed Nov 23, 2024
1 parent cc718e5 commit e94235e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
with:
submodules: true
fetch-depth: 0
- run: echo "${{ inputs.tag }}"
- run: echo "${{ inputs.environment }}"
- run: echo "${{ toJSON(inputs) }}"
- run: echo "${{ toJSON(github.event) }}"
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand All @@ -41,7 +41,7 @@ jobs:

publish-to-testpypi:
name: Publish to TestPyPI
if: inputs.environment == 'testpypy'
if: ${{ github.event.inputs.environment == 'testpypi' }}
needs:
- build
runs-on: ubuntu-latest
Expand All @@ -66,7 +66,7 @@ jobs:

publish-to-pypi:
name: publish
if: inputs.environment == 'pypy'
if: ${{ inputs.environment == 'pypi' }}
needs:
- build
runs-on: ubuntu-latest
Expand Down

0 comments on commit e94235e

Please sign in to comment.