Skip to content

Commit

Permalink
Fix image tags
Browse files Browse the repository at this point in the history
Those should now match tags released by Drone.
  • Loading branch information
weyfonk committed Feb 19, 2024
1 parent 7f687fc commit f131fe3
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ dockers:

# Templates of the Docker image names.
image_templates:
- "ghcr.io/weyfonk/fleet:{{ .Tag }}-amd64"
- "ghcr.io/weyfonk/fleet:{{ .Tag }}-linux-amd64"

# Path to the Dockerfile (from the project root).
dockerfile: package/Dockerfile
Expand All @@ -155,7 +155,7 @@ dockers:
ids:
- fleet-controller
image_templates:
- "ghcr.io/weyfonk/fleet:{{ .Tag }}-arm64v8"
- "ghcr.io/weyfonk/fleet:{{ .Tag }}-linux-arm64"
dockerfile: package/Dockerfile
build_flag_templates:
- "--pull"
Expand All @@ -176,7 +176,7 @@ dockers:
- fleet-agent
- fleet-cli
image_templates:
- "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}-amd64"
- "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}-linux-amd64"
dockerfile: package/Dockerfile.agent
build_flag_templates:
- "--pull"
Expand All @@ -197,7 +197,7 @@ dockers:
- fleet-agent
- fleet-cli
image_templates:
- "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}-arm64v8"
- "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}-linux-arm64"
dockerfile: package/Dockerfile.agent
build_flag_templates:
- "--pull"
Expand All @@ -219,7 +219,7 @@ dockers:
- fleet-gitcloner
- fleet-gitjob
image_templates:
- "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}-amd64"
- "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}-linux-amd64"
dockerfile: package/Dockerfile.gitjob
build_flag_templates:
- "--pull"
Expand All @@ -239,7 +239,7 @@ dockers:
- fleet-gitcloner
- fleet-gitjob
image_templates:
- "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}-arm64v8"
- "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}-linux-arm64"
dockerfile: package/Dockerfile.gitjob
build_flag_templates:
- "--pull"
Expand All @@ -254,21 +254,20 @@ dockers:

docker_manifests:
# https://goreleaser.com/customization/docker_manifest/
-
name_template: "ghcr.io/weyfonk/fleet:{{ .Tag }}"
- name_template: "ghcr.io/weyfonk/fleet:{{ .Tag }}"
image_templates:
- "ghcr.io/weyfonk/fleet:{{ .Tag }}-amd64"
- "ghcr.io/weyfonk/fleet:{{ .Tag }}-arm64v8"
-
name_template: "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}"
- "ghcr.io/weyfonk/fleet:{{ .Tag }}-linux-amd64"
- "ghcr.io/weyfonk/fleet:{{ .Tag }}-linux-arm64"

- name_template: "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}"
image_templates:
- "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}-amd64"
- "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}-arm64v8"
-
name_template: "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}"
- "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}-linux-amd64"
- "ghcr.io/weyfonk/fleet-agent:{{ .Tag }}-linux-arm64"

- name_template: "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}"
image_templates:
- "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}-amd64"
- "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}-arm64v8"
- "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}-linux-amd64"
- "ghcr.io/weyfonk/fleet-gitjob:{{ .Tag }}-linux-arm64"

release:
github:
Expand Down

0 comments on commit f131fe3

Please sign in to comment.