Skip to content

Commit

Permalink
chore: remove v from tag
Browse files Browse the repository at this point in the history
  • Loading branch information
katallaxie committed Aug 7, 2024
1 parent 1e63db8 commit fe0774d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: |
IMAGE_TAG=${GITHUB_SHA}
[[ ${GITHUB_REF_TYPE} == "tag" ]] && IMAGE_TAG=${GITHUB_REF_NAME}
echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_OUTPUT
echo "IMAGE_TAG=${IMAGE_TAG#v}" >> $GITHUB_OUTPUT
- run: sudo apt-get update && sudo apt install -y libxml2-dev libxslt1-dev liblzma-dev zlib1g-dev
- run: |
IMAGE_TAG=${{ steps.image-tag.outputs.IMAGE_TAG }} make release
Expand Down
2 changes: 1 addition & 1 deletion helm/charts/typhoon/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
containers:
- name: controller
terminationMessagePolicy: FallbackToLogsOnError
image: "{{ .Values.global.image.repository }}/controller:v{{ .Values.global.image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.global.image.repository }}/controller:{{ .Values.global.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.global.image.imagePullPolicy }}
env:
- name: SYSTEM_NAMESPACE
Expand Down

0 comments on commit fe0774d

Please sign in to comment.