We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
coder-preview
1 parent 71ea5ac commit 6ded748Copy full SHA for 6ded748
.github/workflows/ci.yaml
@@ -741,8 +741,9 @@ jobs:
741
build/coder_linux_amd64
742
743
# Tag image with new package tag and push
744
- docker tag ghcr.io/coder/coder-preview:main ghcr.io/coder/coder-preview:main-$version
745
- docker push ghcr.io/coder/coder-preview:main-$version
+ tag=$(echo "$version" | sed 's/+/-/g')
+ docker tag ghcr.io/coder/coder-preview:main ghcr.io/coder/coder-preview:main-$tag
746
+ docker push ghcr.io/coder/coder-preview:main-$tag
747
748
- name: Prune old images
749
uses: vlaurin/action-ghcr-prune@v0.5.0
0 commit comments