We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8691115 commit d6e17d5Copy full SHA for d6e17d5
.github/workflows/docker.yml
@@ -39,6 +39,10 @@ jobs:
39
TAG=$(echo "$VERSION" | cut --characters=2- )
40
IMAGE_NAME=ghcr.io/${{ github.repository_owner }}/plotly-node-export-server/plotly-node-export-server:$TAG
41
docker tag plotly "$IMAGE_NAME"
42
+ TAG_MAJOR=$(echo "$TAG" | cut -d. -f1)
43
+ IMAGE_NAME_MAJOR=ghcr.io/${{ github.repository_owner }}/plotly-node-export-server/plotly-node-export-server:$TAG_MAJOR
44
+ docker tag plotly "$IMAGE_NAME_MAJOR"
45
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
46
docker push "$IMAGE_NAME"
47
+ docker push "$IMAGE_NAME_MAJOR"
48
docker logout ghcr.io
0 commit comments