From e9d45f257eb76e378b367ca025149c764d7d635f Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 1 Oct 2025 14:28:52 -0500 Subject: [PATCH] Update GitHub Actions workflows to use dynamic repository references for Docker image tags and URLs --- .github/workflows/build.yml | 6 +++--- .github/workflows/manual-docker-build.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e898fa5..fb1d676 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -149,9 +149,9 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: | - ghcr.io/liamcottle/reticulum-meshchat:latest - ghcr.io/liamcottle/reticulum-meshchat:${{ github.ref_name }} + ghcr.io/${{ github.repository }}:latest + ghcr.io/${{ github.repository }}:${{ github.ref_name }} labels: | org.opencontainers.image.title=Reticulum MeshChat org.opencontainers.image.description=Docker image for Reticulum MeshChat - org.opencontainers.image.url=https://github.com/liamcottle/reticulum-meshchat/pkgs/container/reticulum-meshchat/ + org.opencontainers.image.url=https://github.com/${{ github.repository }}/pkgs/container/reticulum-meshchat/ diff --git a/.github/workflows/manual-docker-build.yml b/.github/workflows/manual-docker-build.yml index 83d5185..e0460e0 100644 --- a/.github/workflows/manual-docker-build.yml +++ b/.github/workflows/manual-docker-build.yml @@ -33,10 +33,10 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: | - ghcr.io/liamcottle/reticulum-meshchat:latest - ghcr.io/liamcottle/reticulum-meshchat:${{ github.ref_name }} + ghcr.io/${{ github.repository }}:latest + ghcr.io/${{ github.repository }}:${{ github.ref_name }} labels: | org.opencontainers.image.title=Reticulum MeshChat org.opencontainers.image.description=Docker image for Reticulum MeshChat - org.opencontainers.image.url=https://github.com/liamcottle/reticulum-meshchat/pkgs/container/reticulum-meshchat/ + org.opencontainers.image.url=https://github.com/${{ github.repository }}/pkgs/container/reticulum-meshchat/