Skip to content

Commit

Permalink
Goreleaser fix configuration for docker image manifest as debug image…
Browse files Browse the repository at this point in the history
… was actually latest
  • Loading branch information
bossm8 committed Jul 17, 2023
1 parent 4a27e32 commit 8d4538c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ docker_manifests:

- name_template: 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-debug'
image_templates:
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-amd64'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-arm64'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-armv7'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-debug-amd64'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-debug-arm64'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-debug-armv7'

- name_template: 'ghcr.io/bossm8/dockerfile-templater:latest'
image_templates:
Expand All @@ -73,9 +73,9 @@ docker_manifests:

- name_template: 'ghcr.io/bossm8/dockerfile-templater:debug'
image_templates:
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-amd64'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-arm64'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-armv7'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-debug-amd64'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-debug-arm64'
- 'ghcr.io/bossm8/dockerfile-templater:{{ .Version }}-debug-armv7'

dockers:
- use: buildx
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ docker run -it --rm \
--user $(id -u):$(id -g) \
-v ${PWD}:${PWD} -w ${PWD} \
ghcr.io/bossm8/dockerfile-templater:latest \
-dockerfile.tpl Dockerfile.tpl \
-variants.def variants.yml \
-variants.cfg variants.cfg.yml
--dockerfile.tpl Dockerfile.tpl \
--variants.def variants.yml \
--variants.cfg variants.cfg.yml
```

#### Debug
Expand Down
Binary file added dockerfile-templater
Binary file not shown.

0 comments on commit 8d4538c

Please sign in to comment.