From 0a1ee01c8fb6cc5227a2902afb526f6d6671b65c Mon Sep 17 00:00:00 2001 From: Tarun-Kumar07 Date: Thu, 25 Jan 2024 20:20:38 +0530 Subject: [PATCH] Remove pushing to docker from ci --- .github/workflows/ci.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0dfeb6..22eb05d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,27 +25,3 @@ jobs: - name: Test with pytest run: | pytest - docker: - needs: run_tests - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GHCR_PAT}} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - push: true - tags: ghcr.io/quantum-tic-tac-toe:latest