From e9b70fe6e043d745044dfec24aab7f4635cc4b79 Mon Sep 17 00:00:00 2001 From: Ryan D McGuire Date: Fri, 21 Mar 2025 13:17:03 -0400 Subject: [PATCH] update gitea ci --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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