From 2a3b5f6532baa2cf1687f3dfc7eab9673791706e Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Sun, 30 Mar 2025 15:17:35 -0400 Subject: [PATCH] Fix job dependencies --- .github/workflows/test-and-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 9ebe17b..37badd8 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -30,6 +30,7 @@ jobs: run-offline-tests: runs-on: ubuntu-latest + needs: build-package steps: - uses: actions/checkout@v1 @@ -66,6 +67,7 @@ jobs: deploy-test-instance: runs-on: ubuntu-latest + needs: build-package steps: - uses: actions/checkout@v1 -- 2.39.5