diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d164661..d1cdd9a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -90,7 +90,7 @@ jobs: VERSION=${{ github.ref_name }} # Detect if the helm chart was updated - chart-updated: + check-chart: runs-on: ubuntu-latest outputs: chart-updated: ${{ steps.filter.outputs.chart }} @@ -107,8 +107,8 @@ jobs: helm-release: runs-on: ubuntu-latest - needs: chart-updated - if: ${{ needs.chart-updated.outputs.chart-updated == 'true' }} + needs: check-chart + if: ${{ needs.check-chart.outputs.chart-updated == 'true' }} steps: - name: Checkout Code uses: actions/checkout@v4