Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka committed May 28, 2024
1 parent a36775c commit ebf78f8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build-wheel-and-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
RELEASE: 'false'
# DEV: ${{ github.base_ref == 'main' && github.event_name == 'pull_request'}}
DEV: 'false'
NIGHTLY: ${{ env.DEV == 'false' && env.RELEASE == 'false'}}

jobs:
set-outputs:
runs-on: ubuntu-latest
Expand All @@ -38,11 +38,10 @@ jobs:
run: |
echo "dev=$DEV" >> $GITHUB_OUTPUT
echo "release=$RELEASE" >> $GITHUB_OUTPUT
echo "nightly=$NIGHTLY" >> $GITHUB_OUTPUT
test-nightly:
needs: set-outputs
if: ${{ needs.set-outputs.outputs.nightly == 'true'}}
if: ${{ needs.set-outputs.outputs.dev == 'false' && needs.set-outputs.outputs.release == 'false'}}
uses: ./.github/workflows/test-nightly.yml

build-wheel-and-push:
Expand Down

0 comments on commit ebf78f8

Please sign in to comment.