From bcd2ec9b5a889f23ea8b51033d78bc7cc473c85a Mon Sep 17 00:00:00 2001 From: Swarup Sengupta Date: Sat, 29 Nov 2025 00:57:10 +0530 Subject: [PATCH] Update CI/CD workflow to include GO_VERSION --- .github/workflows/cicd.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 2fccaa2..7252cbe 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -101,8 +101,9 @@ jobs: - name: Build multi-arch image id: build_img run: | - VERSION=${{ steps.psiphon.outputs.version }} - ./make.bash -t all -g "${VERSION}" + PSIPHON_VERSION=${{ steps.psiphon.outputs.version }} + GO_VERSION=${{ steps.psiphon.outputs.go_version }} + ./make.bash -t all -v "$PSIPHON_VERSION" -g "$GO_VERSION" - name: Push to Docker Hub if missing id: dockerhub_push