From de448c3192d48404301b90cd249f53bc6e83b28f Mon Sep 17 00:00:00 2001 From: Kitaiti Makoto Date: Sun, 2 Jan 2022 23:49:42 +0900 Subject: [PATCH] [skip ci]Deploy tags to Docker Hub --- .github/workflows/deploy-docker.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docker.yaml b/.github/workflows/deploy-docker.yaml index 8ff8f7a4..d65d958b 100644 --- a/.github/workflows/deploy-docker.yaml +++ b/.github/workflows/deploy-docker.yaml @@ -4,6 +4,8 @@ on: push: branches: - 'main' + tags: + - '*' jobs: docker: @@ -27,4 +29,4 @@ jobs: uses: docker/build-push-action@v2 with: push: true - tags: plumeorg/plume:latest + tags: plumeorg/plume:${{ github.ref == 'main' && 'latest' || github.ref }}