Skip to content

Commit 6c489a4

Browse files
authored
fix: remove the unnecessary v prefix from the release tag (#3931)
1 parent 8375774 commit 6c489a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ jobs:
9898
# Update the version part of the image tags in dev/main.tf
9999
- name: Update image versions in main.tf
100100
run: |
101-
sed -i -E 's|(busola_backend_image\s*=\s*".*:)[^"]+|\1v${{ github.event.inputs.name }}|' dev/main.tf
102-
sed -i -E 's|(busola_web_image\s*=\s*".*:)[^"]+|\1v${{ github.event.inputs.name }}|' dev/main.tf
101+
sed -i -E 's|(busola_backend_image\s*=\s*".*:)[^"]+|\1${{ github.event.inputs.name }}|' dev/main.tf
102+
sed -i -E 's|(busola_web_image\s*=\s*".*:)[^"]+|\1${{ github.event.inputs.name }}|' dev/main.tf
103103
104104
# Open a pull request to the dev branch with the updated image versions
105105
- name: Create Pull Request

0 commit comments

Comments
 (0)