fix: ci revert name

This commit is contained in:
songtianlun
2024-08-18 22:07:02 +08:00
parent 957bb3d3e6
commit 86946b6b15
2 changed files with 18 additions and 18 deletions

View File

@@ -20,8 +20,8 @@ jobs:
else
TAG="canary"
fi
docker build --platform linux/amd64 -t songtianlun/dokploy:${TAG}-amd64 .
docker push songtianlun/dokploy:${TAG}-amd64
docker build --platform linux/amd64 -t dokploy/dokploy:${TAG}-amd64 .
docker push dokploy/dokploy:${TAG}-amd64
build-arm64:
machine:
@@ -43,8 +43,8 @@ jobs:
else
TAG="canary"
fi
docker build --platform linux/arm64 -t songtianlun/dokploy:${TAG}-arm64 .
docker push songtianlun/dokploy:${TAG}-arm64
docker build --platform linux/arm64 -t dokploy/dokploy:${TAG}-arm64 .
docker push dokploy/dokploy:${TAG}-arm64
combine-manifests:
docker:
@@ -62,21 +62,21 @@ jobs:
echo $VERSION
TAG="latest"
docker manifest create songtianlun/dokploy:${TAG} \
songtianlun/dokploy:${TAG}-amd64 \
songtianlun/dokploy:${TAG}-arm64
docker manifest push songtianlun/dokploy:${TAG}
docker manifest create dokploy/dokploy:${TAG} \
dokploy/dokploy:${TAG}-amd64 \
dokploy/dokploy:${TAG}-arm64
docker manifest push dokploy/dokploy:${TAG}
docker manifest create songtianlun/dokploy:${VERSION} \
songtianlun/dokploy:${TAG}-amd64 \
songtianlun/dokploy:${TAG}-arm64
docker manifest push songtianlun/dokploy:${VERSION}
docker manifest create dokploy/dokploy:${VERSION} \
dokploy/dokploy:${TAG}-amd64 \
dokploy/dokploy:${TAG}-arm64
docker manifest push dokploy/dokploy:${VERSION}
else
TAG="canary"
docker manifest create songtianlun/dokploy:${TAG} \
songtianlun/dokploy:${TAG}-amd64 \
songtianlun/dokploy:${TAG}-arm64
docker manifest push songtianlun/dokploy:${TAG}
docker manifest create dokploy/dokploy:${TAG} \
dokploy/dokploy:${TAG}-amd64 \
dokploy/dokploy:${TAG}-arm64
docker manifest push dokploy/dokploy:${TAG}
fi
workflows:

View File

@@ -24,7 +24,7 @@ jobs:
context: .
file: ./Dockerfile.docs
push: true
tags: songtianlun/dokploy-docs:latest
tags: dokploy/dokploy-docs:latest
platforms: linux/amd64
build-and-push-image-website:
@@ -46,5 +46,5 @@ jobs:
context: .
file: ./Dockerfile.website
push: true
tags: songtianlun/dokploy-website:latest
tags: dokploy/dokploy-website:latest
platforms: linux/amd64