From f650457acb08d922678e5a0f1ae614b3b9a035de Mon Sep 17 00:00:00 2001 From: Kirk Brown Date: Fri, 8 Sep 2023 20:47:06 -0400 Subject: [PATCH] Run jobs sequentially. --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 40c5860..b6d2c92 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,10 +23,12 @@ jobs: - uses: actions/checkout@v3 - name: Test the Docker image run: docker run --rm -d ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest + needs: build # push_to_registry: # name: Push Docker image to Docker Hub # runs-on: ubuntu-latest + # needs: test # steps: # - name: Check out the repo # uses: actions/checkout@v3