Skip to content

Commit f9af8c2

Browse files
committed
Remove several curly braces that shouldn't be there.
1 parent 41d0c2c commit f9af8c2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -906,39 +906,39 @@ jobs:
906906
gecho " - ghcr.io/${{ github.repository }}:{{ .Tag }}-amd64"
907907
fi
908908
if [[ "${{ inputs.release-arch-arm64 }}" == "true" ]]; then
909-
gecho " - ghcr.io/${{ github.repository }}:{{ .Tag }-arm64}"
909+
gecho " - ghcr.io/${{ github.repository }}:{{ .Tag }-arm64"
910910
fi
911911
912912
if [[ "${{ inputs.release-docker-major }}" == "true" ]]; then
913913
gecho " - name_template: ghcr.io/${{ github.repository }}:v{{ .Major }}"
914914
gecho " image_templates:"
915915
if [[ "${{ inputs.release-arch-amd64 }}" == "true" ]]; then
916-
gecho " - ghcr.io/${{ github.repository }}:v{{ .Major }}-amd64}"
916+
gecho " - ghcr.io/${{ github.repository }}:v{{ .Major }}-amd64"
917917
fi
918918
if [[ "${{ inputs.release-arch-arm64 }}" == "true" ]]; then
919-
gecho " - ghcr.io/${{ github.repository }}:v{{ .Major }}-arm64}"
919+
gecho " - ghcr.io/${{ github.repository }}:v{{ .Major }}-arm64"
920920
fi
921921
fi
922922
923923
if [[ "${{ inputs.release-docker-minor }}" == "true" ]]; then
924924
gecho " - name_template: ghcr.io/${{ github.repository }}:v{{ .Major }}.{{ .Minor }}"
925925
gecho " image_templates:"
926926
if [[ "${{ inputs.release-arch-amd64 }}" == "true" ]]; then
927-
gecho " - ghcr.io/${{ github.repository }}:v{{ .Major }}.{{ .Minor }}-amd64}"
927+
gecho " - ghcr.io/${{ github.repository }}:v{{ .Major }}.{{ .Minor }}-amd64"
928928
fi
929929
if [[ "${{ inputs.release-arch-arm64 }}" == "true" ]]; then
930-
gecho " - ghcr.io/${{ github.repository }}:v{{ .Major }}.{{ .Minor }}-arm64}"
930+
gecho " - ghcr.io/${{ github.repository }}:v{{ .Major }}.{{ .Minor }}-arm64"
931931
fi
932932
fi
933933
934934
if [[ "${{ inputs.release-docker-latest }}" == "true" ]]; then
935935
gecho " - name_template: ghcr.io/${{ github.repository }}:latest"
936936
gecho " image_templates:"
937937
if [[ "${{ inputs.release-arch-amd64 }}" == "true" ]]; then
938-
gecho " - ghcr.io/${{ github.repository }}:latest-amd64}"
938+
gecho " - ghcr.io/${{ github.repository }}:latest-amd64"
939939
fi
940940
if [[ "${{ inputs.release-arch-arm64 }}" == "true" ]]; then
941-
gecho " - ghcr.io/${{ github.repository }}:latest-arm64}"
941+
gecho " - ghcr.io/${{ github.repository }}:latest-arm64"
942942
fi
943943
fi
944944

0 commit comments

Comments
 (0)