We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cb4d590 + c6c407c commit fb239cdCopy full SHA for fb239cd
1 file changed
.github/workflows/docker-publish.yml
@@ -11,7 +11,9 @@ name: Build & Publish
11
12
on:
13
push:
14
- branches: ['release']
+ # Pattern matched against refs/tags
15
+ tags:
16
+ - '**'
17
18
env:
19
REGISTRY: docker.io
@@ -47,7 +49,7 @@ jobs:
47
49
include:
48
50
- dockerfile: Dockerfile
51
tags: |
- ${{ needs.generate.outputs.REGISTRY }}/keychainmdip/bitcoin-core:release
52
+ ${{ needs.generate.outputs.REGISTRY }}/keychainmdip/bitcoin-core:${{ github.ref_name }}
53
permissions:
54
contents: read
55
packages: write
@@ -70,7 +72,7 @@ jobs:
70
72
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
71
73
74
${{ needs.generate.outputs.CALVER }}
- release
75
+ ${{ github.ref_name }}
76
77
- name: Build and push Docker images
78
uses: docker/build-push-action@1a162644f9a7e87d8f4b053101d1d9a712edc18c
0 commit comments