From c75d200c7081bc38c988e708287def315ffb4505 Mon Sep 17 00:00:00 2001 From: Greirson Lee-Thorp Date: Mon, 5 May 2025 16:53:40 -0700 Subject: [PATCH] Update docker-publish.yml to support :dev tag --- .github/workflows/docker-publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 355a1a7..9cd9563 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -4,6 +4,7 @@ on: push: branches: - main # Trigger the workflow on pushes to the main branch + - dev # Trigger the workflow on pushes to the dev branch jobs: build-and-push: @@ -39,6 +40,8 @@ jobs: images: | name=dumbwareio/dumbdrop tags: | + # Add :dev tag for pushes to the dev branch + type=raw,value=dev,enable=${{ github.ref == 'refs/heads/dev' }} # the semantic versioning tags add "latest" when a version tag is present # but since version tags aren't being used (yet?) let's add "latest" anyway type=raw,value=latest