Skip to content

Commit 05ff513

Browse files
committed
ci: Publish Git tags in GitHub workflow.
- Add steps to publish Git describe tag and floating tag in publish-latest-image workflow.
1 parent 2d754a0 commit 05ff513

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/publish-latest-image.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ jobs:
2323
- uses: actions/checkout@v4
2424
- uses: docker/setup-qemu-action@v3
2525
- uses: docker/setup-buildx-action@v3
26+
27+
# Publish the Git describe tag
28+
- run: make publish-image
29+
env:
30+
DOCKER_DEFAULT_PLATFORM: ${{ matrix.arch }}
31+
32+
# Publish the floating tag
2633
- run: make publish-image
2734
env:
28-
DOCKER_DEFAULT_PLATFORM: ${{ matrix.arch }}
35+
DOCKER_DEFAULT_PLATFORM: ${{ matrix.arch }}
36+
VERSION: latest

0 commit comments

Comments
 (0)