From 9aa0523f06d842ca7bac5f6766cef445ee818ad1 Mon Sep 17 00:00:00 2001 From: XyLearningProgramming Date: Mon, 21 Jul 2025 14:44:53 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20trying=20to=20fix=20tag=20fo?= =?UTF-8?q?rmat=20in=20output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 3053171..284640c 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -72,7 +72,7 @@ jobs: # Find the tag with SHA suffix (format: branch-sha) TAGS='${{ steps.meta.outputs.tags }}' SHA_TAG=$(echo "$TAGS" | grep -E '.*-[a-f0-9]{7}$' | head -1 | cut -d':' -f2) - echo $SHA_TAG >> $GITHUB_OUTPUT + echo "tag=$SHA_TAG" >> $GITHUB_OUTPUT - name: Deploy with Helm uses: ./.github/actions/helm-deploy From f50e2ffed84ef9179eab5d0838df9468818bf9d5 Mon Sep 17 00:00:00 2001 From: XyLearningProgramming Date: Mon, 21 Jul 2025 14:47:08 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=9B=20trying=20to=20fix=20ci?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1617854..c8136b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v5 with: - file: ./coverage.xml + files: ./coverage.xml flags: unittests fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }}