From ca1a1ab90e44d09ad79e45908073b93d08b7e109 Mon Sep 17 00:00:00 2001 From: Kyriakos Akriotis Date: Mon, 2 Dec 2024 12:27:54 +0000 Subject: [PATCH] corrected sed delimiter for appVersion #175 --- .github/workflows/build-publish-production.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-publish-production.yaml b/.github/workflows/build-publish-production.yaml index e29314622..eb5ee1f47 100644 --- a/.github/workflows/build-publish-production.yaml +++ b/.github/workflows/build-publish-production.yaml @@ -120,7 +120,7 @@ jobs: git config --global user.name 'otcbot' git config --global user.email 'otc_ecosystem_squad@t-systems.com' sed -i 's|^version: .*|version: 0.3.${{github.run_number}}|' ./charts/docusaurus/Chart.yaml - sed -i 's|^appVersion: .*|appVersion:${{ env.tag }}/' ./charts/docusaurus/Chart.yaml + sed -i 's|^appVersion: .*|appVersion:${{ env.tag }}|' ./charts/docusaurus/Chart.yaml sed -i 's|^tag: .*|tag: ${{ env.tag }}|' ./charts/docusaurus/values-prod.yaml sed -i 's|^image: .*|image: ${{ env.image }}|' ./charts/docusaurus/values-prod.yaml git commit -am "Automatic commit from GitHub Actions triggered by action ${{github.run_number}}"