We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e57c3ed commit daebca3Copy full SHA for daebca3
1 file changed
.github/workflows/docker-publish.yml
@@ -46,14 +46,15 @@ jobs:
46
with:
47
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
48
tags: |
49
- type=raw,value=${{ env.DNSCRYPT_PROXY_VERSION }}
+ type=raw,value=${{ env.DNSCRYPT_PROXY_VERSION }},enable=${{ github.ref_name == 'master' }}
50
type=raw,value=latest,enable=${{ github.ref_name == 'master' }}
51
type=raw,value=testing,enable=${{ github.ref_name == 'testing' }}
52
+ type=raw,value=testing-${{ env.DNSCRYPT_PROXY_VERSION }},enable=${{ github.ref_name == 'testing' }}
53
54
- uses: docker/build-push-action@v6
55
56
context: .
57
platforms: linux/amd64
- build-args: VERSION=${{ env.DNSCRYPT_PROXY_VERSION }}
58
+ build-args: RELEASE_TAG=${{ env.DNSCRYPT_PROXY_VERSION }}
59
tags: ${{ steps.meta.outputs.tags }}
60
push: true
0 commit comments