Skip to content

Commit

Permalink
CI: Fix nightly build pipeline (2nd attempt) (#2393)
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Nov 11, 2023
1 parent 6fe41d6 commit 89e1ab4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-wheel-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3

- name: Update nightly version
if: ${{ github.event.inputs.isNightly == 'true' || inputs.isNightly == 'true' }}
if: ${{ inputs.isNightly == true }}
run: /opt/python/cp310-cp310/bin/python update-nightly-build-version.py
working-directory: scripts

Expand All @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v3

- name: Update nightly version
if: ${{ github.event.inputs.isNightly == 'true' || inputs.isNightly == 'true' }}
if: ${{ inputs.isNightly == true }}
run: /opt/python/cp310-cp310/bin/python update-nightly-build-version.py
working-directory: scripts

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mac-wheel-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3

- name: Update nightly version
if: ${{ github.event.inputs.isNightly == 'true' || inputs.isNightly == 'true' }}
if: ${{ inputs.isNightly == true }}
run: python3 update-nightly-build-version.py
working-directory: scripts

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v3

- name: Update nightly version
if: ${{ github.event.inputs.isNightly == 'true' || inputs.isNightly == 'true' }}
if: ${{ inputs.isNightly == true }}
run: python3 update-nightly-build-version.py
working-directory: scripts

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-wheel-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3

- name: Update nightly version
if: ${{ github.event.inputs.isNightly == 'true' || inputs.isNightly == 'true' }}
if: ${{ inputs.isNightly == true }}
run: python3 update-nightly-build-version.py
working-directory: ./scripts

Expand Down

0 comments on commit 89e1ab4

Please sign in to comment.