From 6e997781092c0b7886229fb599b9c4dc03a429bd Mon Sep 17 00:00:00 2001 From: gotsysdba Date: Fri, 19 Sep 2025 19:02:06 +0100 Subject: [PATCH 1/2] Fix filename --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 9b303b48..786ba5e6 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -42,7 +42,7 @@ jobs: - name: Inject Static Version into _version.py and version.tf run: | echo "__version__ = \"$VERSION\"" > src/common/_version.py - sed -i "s/app_version = \".*\"/app_version = \"$VERSION\"/" opentofu/version.tf + sed -i "s/app_version = \".*\"/app_version = \"$VERSION\"/" opentofu/versions.tf echo "Injected version:" cat src/common/_version.py cat opentofu/version.tf From c0be5b1c0be0c88998770a1036b1a565017a011a Mon Sep 17 00:00:00 2001 From: gotsysdba Date: Fri, 19 Sep 2025 19:06:38 +0100 Subject: [PATCH 2/2] Forgot one --- .github/workflows/releases.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 786ba5e6..c6779128 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -45,7 +45,7 @@ jobs: sed -i "s/app_version = \".*\"/app_version = \"$VERSION\"/" opentofu/versions.tf echo "Injected version:" cat src/common/_version.py - cat opentofu/version.tf + cat opentofu/versions.tf env: VERSION: ${{ steps.version.outputs.VERSION }}