Skip to content

Commit d05d1d3

Browse files
authored
Fix IaC Version filename (#269)
* Fix Release Action
1 parent bac61b3 commit d05d1d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/releases.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
- name: Inject Static Version into _version.py and version.tf
4343
run: |
4444
echo "__version__ = \"$VERSION\"" > src/common/_version.py
45-
sed -i "s/app_version = \".*\"/app_version = \"$VERSION\"/" opentofu/version.tf
45+
sed -i "s/app_version = \".*\"/app_version = \"$VERSION\"/" opentofu/versions.tf
4646
echo "Injected version:"
4747
cat src/common/_version.py
48-
cat opentofu/version.tf
48+
cat opentofu/versions.tf
4949
env:
5050
VERSION: ${{ steps.version.outputs.VERSION }}
5151

0 commit comments

Comments
 (0)