We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 486ced1 commit 76ebe17Copy full SHA for 76ebe17
.github/workflows/ci.yml
@@ -72,16 +72,6 @@ jobs:
72
- name: Sanitize ref name for image tags
73
run: echo "REF_SLUG=$(echo ${{ github.ref_name }} | tr '/:' '-')" >> $GITHUB_ENV
74
75
- - name: Validate Chart Version Matches Tag
76
- if: startsWith(github.ref, 'refs/tags/')
77
- run: |
78
- TAG="${GITHUB_REF#refs/tags/}"
79
- CHART_VERSION=$(yq '.version' manifests/Chart.yaml)
80
- if [ "$TAG" != "$CHART_VERSION" ]; then
81
- echo "Chart version ($CHART_VERSION) does not match tag ($TAG)" >&2
82
- exit 1
83
- fi
84
-
85
- name: Build and Push Release Docker Image
86
uses: docker/build-push-action@v5
87
if: startsWith(github.ref, 'refs/tags/')
0 commit comments