From 77ce71cd5bc8e59f639699922af4c3e678345c53 Mon Sep 17 00:00:00 2001 From: Kevin Hahn Date: Mon, 10 Jun 2024 12:28:34 -0600 Subject: [PATCH] explicitly build and restore to ensure that MercurialExtensions is found --- .github/workflows/k8s-action.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/k8s-action.yaml b/.github/workflows/k8s-action.yaml index 381f187d69..d01738d569 100644 --- a/.github/workflows/k8s-action.yaml +++ b/.github/workflows/k8s-action.yaml @@ -43,6 +43,8 @@ jobs: run: kubectl port-forward service/ingress-nginx-controller 6579:80 -n languagedepot & - name: verify ingress run: curl -v http://localhost:6579 + - name: build + run: dotnet restore && dotnet build --no-restore - name: test env: TEST_SERVER_HOSTNAME: 'localhost:6579'