diff options
author | Parker <contact@pkrm.dev> | 2024-07-18 16:13:53 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-07-18 16:13:53 -0500 |
commit | 463cd8cf2987c5379d460040b447ae3a79c79bd9 (patch) | |
tree | 11b415b4fbd210490fdbcf8c850d166450554109 | |
parent | 6ac724762c26a537124c05fe121a923652f9cf12 (diff) |
Tag images as "latest" as opposed to the commit SHA
-rw-r--r-- | .github/workflows/docker-publish.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 26ec339..c310479 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -37,7 +37,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest - name: Build and push Docker image id: push |