From 9a317247a1c36b1cd0ec714ea0cee61ac03dd162 Mon Sep 17 00:00:00 2001 From: Jamil Date: Mon, 15 Apr 2024 17:01:17 -0700 Subject: [PATCH] chore(ci): .env not available in `with` shared workflow context (#4631) Le sigh --- .github/workflows/cd.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 39a44ab13..42d110f8c 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -23,7 +23,9 @@ jobs: uses: ./.github/workflows/_build_artifacts.yml secrets: inherit with: - tag_name: "${{ env.VERSION }}" + # See https://github.com/actions/runner/issues/2372 + # mark:automatic-version + tag_name: "1.0.0" image_prefix: "dev" stage: "debug" profile: "debug"