From 031a8079832ff89ea5bd420cb133e5c5bc435c32 Mon Sep 17 00:00:00 2001 From: Daniel Lipovetsky Date: Wed, 18 Oct 2023 12:15:23 -0700 Subject: [PATCH] build: Respect env vars in release-manifests step Previously, the env vars were not being used, due to a typo. --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a0788024a..d2cf1fee8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -57,7 +57,7 @@ jobs: # Also see note on make variables, above. run: | make release-manifests \ - --makefile d2iq.Makefile + --makefile d2iq.Makefile \ REGISTRY=${{ env.registry }} \ CAPVCD_IMG=${{ env.repository }} \ VERSION=${{ env.version }}