From 86946b6b15e712f1f0cb5110ab5475bb671b11ef Mon Sep 17 00:00:00 2001 From: songtianlun Date: Sun, 18 Aug 2024 22:07:02 +0800 Subject: [PATCH] fix: ci revert name --- .circleci/config.yml | 32 ++++++++++++++++---------------- .github/workflows/deploy.yml | 4 ++-- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d0cd1177..9eca0514 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 29deceb7..226da184 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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