Commit 8072f2d

Anton Golub <antongolub@antongolub.com>
2025-03-21 17:05:57
build: fix dev-publish (#1143)
1 parent e8780ad
Changed files (1)
.github
.github/workflows/dev-publish.yml
@@ -110,7 +110,7 @@ jobs:
           images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
           tags: |
             # minimal
-            type=semver,pattern={{version}},value=v${{ env.ZX_VERSION }}-dev.${{ SHA_SHORT }}
+            type=semver,pattern={{version}},value=v${{ env.ZX_VERSION }}-dev.${{ env.SHA_SHORT }}
       # This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
       # It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see [Usage](https://github.com/docker/build-push-action#usage) in the README of the `docker/build-push-action` repository.
       # It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.