feat: adjust to only build the latest image when pushing a tag. (#1324)

This commit is contained in:
takatost 2023-10-12 12:38:07 +08:00 committed by GitHub
parent 9cba1c8bf4
commit c0fe706597
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ jobs:
with: with:
images: langgenius/dify-api images: langgenius/dify-api
tags: | tags: |
type=raw,value=latest,enable={{is_default_branch}} type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }}
type=ref,event=branch type=ref,event=branch
type=sha,enable=true,priority=100,prefix=,suffix=,format=long type=sha,enable=true,priority=100,prefix=,suffix=,format=long
type=semver,pattern={{major}}.{{minor}}.{{patch}} type=semver,pattern={{major}}.{{minor}}.{{patch}}

View File

@ -31,7 +31,7 @@ jobs:
with: with:
images: langgenius/dify-web images: langgenius/dify-web
tags: | tags: |
type=raw,value=latest,enable={{is_default_branch}} type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }}
type=ref,event=branch type=ref,event=branch
type=sha,enable=true,priority=100,prefix=,suffix=,format=long type=sha,enable=true,priority=100,prefix=,suffix=,format=long
type=semver,pattern={{major}}.{{minor}}.{{patch}} type=semver,pattern={{major}}.{{minor}}.{{patch}}