Skip to content

Commit

Permalink
build: push docker image to ghcr.io (#1237)
Browse files Browse the repository at this point in the history
with the new recent changes in dockerhub[1] we should
start pushing images to ghcr, and eventually phase out
the existing dockerhub setup.

[1]: https://blog.alexellis.io/docker-is-deleting-open-source-images/

Signed-off-by: Chinmay D. Pai <chinmay.pai@zerodha.com>
  • Loading branch information
Thunderbottom committed Apr 11, 2023
1 parent 101459f commit 8c46b75
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -25,6 +25,13 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to GitHub Docker Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Prepare Dependencies
run: |
make dist
Expand Down
15 changes: 13 additions & 2 deletions .goreleaser.yml
Expand Up @@ -37,14 +37,25 @@ archives:
- LICENSE

dockers:
-
goos: linux
- goos: linux
goarch: amd64
ids:
- listmonk
image_templates:
- "listmonk/listmonk:latest"
- "listmonk/listmonk:{{ .Tag }}"
- "ghcr.io/knadh/{{ .ProjectName }}:latest"
- "ghcr.io/knadh/{{ .ProjectName }}:{{ .Tag }}"
build_flag_templates:
- --platform=linux/amd64
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/knadh/{{ .ProjectName }}
- --label=org.opencontainers.image.source=https://github.com/knadh/{{ .ProjectName }}
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- --label=org.opencontainers.image.licenses=AGPL-3.0
dockerfile: Dockerfile
extra_files:
- config.toml.sample
Expand Down

0 comments on commit 8c46b75

Please sign in to comment.