We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fc5f68 commit c9da431Copy full SHA for c9da431
1 file changed
.github/workflows/release.yml
@@ -30,9 +30,6 @@ jobs:
30
git fetch --tags
31
TAG=$(git describe --tags --abbrev=0)
32
echo "tag=$TAG" >> $GITHUB_OUTPUT
33
- - name: Get current tag
34
- run: |
35
- echo "Tag: ${{ steps.tag.outputs.tag }}"
36
- name: Log in to the Github Container registry
37
uses: docker/login-action@v3
38
with:
@@ -42,13 +39,11 @@ jobs:
42
39
43
40
- name: Extract metadata (tags, labels) for Docker
44
41
id: meta
45
- uses: docker/metadata-action@v4
+ uses: docker/metadata-action@v5
46
47
images: ghcr.io/${{ github.repository_owner }}/stencil-cli
48
tags: |
49
- type=match,pattern=\d.\d.\d
50
- type=match,pattern=\d.\d.
51
- type=match,pattern=\d.
+ type=semver,pattern={{version}}
52
- name: Set up Docker Buildx
53
uses: docker/setup-buildx-action@v3
54
0 commit comments