From 03dab21a0a50f346fd2d488f23285d5fa4775da5 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Tue, 13 Jan 2026 13:45:32 -0600 Subject: [PATCH] Switch to Docker Hub and use shared runners - Change registry from GitLab to Docker Hub (gmcintire/towerops-agent) - Update authentication to use DOCKERHUB_USERNAME and DOCKERHUB_TOKEN - Remove vntx runner tags to use GitLab shared runners --- .gitlab-ci.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1bd49cc..e059665 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,8 +17,6 @@ variables: # Test stage - compile and check code test: stage: test - tags: - - vntx image: rust:1.83-alpine before_script: - apk add --no-cache musl-dev @@ -39,8 +37,6 @@ test: # Build Docker image for branches (test build) build:test: stage: build - tags: - - vntx image: docker:24-dind services: - docker:24-dind @@ -63,8 +59,6 @@ build:test: # Build and push for main branch build:main: stage: build - tags: - - vntx image: docker:24-dind services: - docker:24-dind @@ -88,8 +82,6 @@ build:main: # Release build for tags (versioned releases) release: stage: release - tags: - - vntx image: docker:24-dind services: - docker:24-dind @@ -122,8 +114,6 @@ release: build:multiarch: stage: build - tags: - - vntx image: docker:24-dind services: - docker:24-dind