Skip to content

Commit 3594ced

Browse files
Merge pull request #4 from XyLearningProgramming/fix/cd
🐛 trying to fix tag format in output
2 parents 2241e02 + f50e2ff commit 3594ced

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
# Find the tag with SHA suffix (format: branch-sha)
7373
TAGS='${{ steps.meta.outputs.tags }}'
7474
SHA_TAG=$(echo "$TAGS" | grep -E '.*-[a-f0-9]{7}$' | head -1 | cut -d':' -f2)
75-
echo $SHA_TAG >> $GITHUB_OUTPUT
75+
echo "tag=$SHA_TAG" >> $GITHUB_OUTPUT
7676
7777
- name: Deploy with Helm
7878
uses: ./.github/actions/helm-deploy

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Upload coverage to Codecov
3939
uses: codecov/codecov-action@v5
4040
with:
41-
file: ./coverage.xml
41+
files: ./coverage.xml
4242
flags: unittests
4343
fail_ci_if_error: false
4444
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)