From 0434863f5b3d934addecd50e45cd14e54e5ef9a6 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Sun, 2 Aug 2026 20:48:24 -0400 Subject: [PATCH] Use type=edge instead --- .github/workflows/publish-docker-image.yaml | 4 ++-- README.md | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-docker-image.yaml b/.github/workflows/publish-docker-image.yaml index 3104880..9249492 100644 --- a/.github/workflows/publish-docker-image.yaml +++ b/.github/workflows/publish-docker-image.yaml @@ -28,7 +28,7 @@ jobs: type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} type=match,pattern=\d.\d.\d,value=latest - type=match,pattern=main,value=latest + type=edge - name: Build and push uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 with: @@ -59,7 +59,7 @@ jobs: type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} type=match,pattern=\d.\d.\d,value=latest - type=match,pattern=main,value=latest + type=edge - name: Build and push uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 with: diff --git a/README.md b/README.md index caf0e91..8436746 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,18 @@ The repository is comprised of four crates: - `taskchampion-sync-server-storage-postgres` implements a Postgres backend for the core - `taskchampion-sync-server` implements a simple HTTP server for the protocol +## Images + +This package builds two docker images: + - `ghcr.io/gothenburgbitfactory/taskchampion-sync-server-postgres` + - `ghcr.io/gothenburgbitfactory/taskchampion-sync-server-sqlite` + +These are tagged with as follows: + - With the full version, with tags like `:0.7.1` + - With the minor version, with tags like `:0.7` + - The latest released version with tag `latest` + - A monthly rolling release from Git with tag `edge` + ### Building From Source #### Installing Rust