We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2241e02 + f50e2ff commit 3594cedCopy full SHA for 3594ced
.github/workflows/cd.yml
@@ -72,7 +72,7 @@ jobs:
72
# Find the tag with SHA suffix (format: branch-sha)
73
TAGS='${{ steps.meta.outputs.tags }}'
74
SHA_TAG=$(echo "$TAGS" | grep -E '.*-[a-f0-9]{7}$' | head -1 | cut -d':' -f2)
75
- echo $SHA_TAG >> $GITHUB_OUTPUT
+ echo "tag=$SHA_TAG" >> $GITHUB_OUTPUT
76
77
- name: Deploy with Helm
78
uses: ./.github/actions/helm-deploy
.github/workflows/ci.yml
@@ -38,7 +38,7 @@ jobs:
38
- name: Upload coverage to Codecov
39
uses: codecov/codecov-action@v5
40
with:
41
- file: ./coverage.xml
+ files: ./coverage.xml
42
flags: unittests
43
fail_ci_if_error: false
44
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments