Skip to content

Commit

Permalink
test: Allow testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nfelt14 committed Sep 9, 2024
1 parent bee0538 commit 9c9a5cd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/_reusable-package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
bump-version:
name: Update package version
needs: [print-inputs]
if: github.repository == inputs.repo-name && github.ref == 'refs/heads/main'
# if: github.repository == inputs.repo-name && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
environment: package-release-gate
continue-on-error: true
Expand Down Expand Up @@ -165,9 +165,10 @@ jobs:
pypi-build:
name: Build package
needs: [print-inputs, bump-version]
if: inputs.build-and-publish-python-package && github.repository == inputs.repo-name
&& github.ref == 'refs/heads/main' && needs.bump-version.outputs.approved ==
'true'
if: needs.bump-version.outputs.approved == 'true'
# if: inputs.build-and-publish-python-package && github.repository == inputs.repo-name
# && github.ref == 'refs/heads/main' && needs.bump-version.outputs.approved ==
# 'true'
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down

0 comments on commit 9c9a5cd

Please sign in to comment.