Skip to content

Commit 6bc66f0

Browse files
committed
workflows: fix dependency name in build-on-push
Test job depends on build, but there was a mistake in the dependency name. This patches fixes the dependency to proper name. Signed-off-by: Milosz Wasilewski <[email protected]>
1 parent afe9350 commit 6bc66f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-on-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: ./.github/workflows/lava-schema-check.yml
1818
test:
1919
uses: ./.github/workflows/test.yml
20-
needs: [build, schema-check]
20+
needs: [build-daily, schema-check]
2121
secrets: inherit
2222
with:
2323
url: ${{ needs.build.outputs.artifacts_url }}

0 commit comments

Comments
 (0)