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 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 }}