From b27ae83500ff3f4f53543f63edd09c5b7e4c6cd7 Mon Sep 17 00:00:00 2001 From: Siddhartha Basu Date: Fri, 28 Jun 2024 12:54:25 -0500 Subject: [PATCH] fix(test_deploy.yaml): correct the ref value for deployment from refs/heads/develop to develop The change in the reference value from 'refs/heads/develop' to 'develop' ensures that the correct Git reference is used in the deployment process, aligning with the expected format in the deployment scripts. This adjustment helps in avoiding potential errors during the deployment phase where the exact branch name is required without the full ref path. --- .github/workflows/test_deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_deploy.yaml b/.github/workflows/test_deploy.yaml index ad2f1d7..17a0c2e 100644 --- a/.github/workflows/test_deploy.yaml +++ b/.github/workflows/test_deploy.yaml @@ -13,6 +13,6 @@ jobs: cluster_state_storage: ${{ vars.DEV_STAGING_KOPS_STATE_STORAGE }} repository: dictyBase/static-server.git image: goran - ref: refs/heads/develop + ref: develop dockerfile: Dockerfile namespace: cybersiddhu