diff --git a/.github/workflows/build-api-image.yml b/.github/workflows/build-api-image.yml index cc3964e6e1..1b5bf764ec 100644 --- a/.github/workflows/build-api-image.yml +++ b/.github/workflows/build-api-image.yml @@ -31,7 +31,7 @@ jobs: with: images: langgenius/dify-api tags: | - type=raw,value=latest,enable={{is_default_branch}} + type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }} type=ref,event=branch type=sha,enable=true,priority=100,prefix=,suffix=,format=long type=semver,pattern={{major}}.{{minor}}.{{patch}} diff --git a/.github/workflows/build-web-image.yml b/.github/workflows/build-web-image.yml index 51d0e8967c..32685d5092 100644 --- a/.github/workflows/build-web-image.yml +++ b/.github/workflows/build-web-image.yml @@ -31,7 +31,7 @@ jobs: with: images: langgenius/dify-web tags: | - type=raw,value=latest,enable={{is_default_branch}} + type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }} type=ref,event=branch type=sha,enable=true,priority=100,prefix=,suffix=,format=long type=semver,pattern={{major}}.{{minor}}.{{patch}}