From d8c213d70b4a50048d681a05cc2f8c3fea3903b0 Mon Sep 17 00:00:00 2001 From: Kyriakos Akriotis Date: Mon, 2 Dec 2024 04:30:15 -0800 Subject: [PATCH] corrected sed delimiter for appVersion #175 (#176) --- .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}}"