We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bee6f13 commit 7ff5889Copy full SHA for 7ff5889
.github/workflows/nightly_release.yml
@@ -9,8 +9,6 @@ permissions:
9
contents: write # Grant write permission for tagging
10
11
jobs:
12
- tests:
13
- uses: ./.github/workflows/run_integration_tests.yml
14
check_publish_needed:
15
runs-on: ubuntu-latest
16
name: Check if this commit has already been published
@@ -35,6 +33,10 @@ jobs:
35
33
echo "New commit detected."
36
34
echo "should_run=true" >> $GITHUB_OUTPUT
37
fi
+ tests:
+ needs: check_publish_needed
38
+ if: ${{ needs.check_publish_needed.outputs.should_run == 'true' }}
39
+ uses: ./.github/workflows/run_integration_tests.yml
40
41
build_and_publish_nightly:
42
needs: [check_publish_needed, tests]
0 commit comments