update gitea ci
All checks were successful
Build and Publish / release (push) Has been skipped
Build and Publish / check-chart (push) Successful in 20s
Build and Publish / helm-release (push) Has been skipped

This commit is contained in:
Ryan McGuire 2025-03-21 13:17:03 -04:00
parent ca18eba167
commit e9b70fe6e0

View File

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