diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 0fd47a3..95c47e9 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -11,13 +11,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Login to registry - uses: docker/login-action@v2 - with: - registry: registry.container-registry.svc.cluster.local:5000 - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - name: Build and push action image run: | docker build -t registry.container-registry.svc.cluster.local:5000/infra/kforge:latest . diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index 1898295..c6e10b4 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -18,13 +18,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Login to registry - uses: docker/login-action@v2 - with: - registry: registry.container-registry.svc.cluster.local:5000 - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3