diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77f182a..dc94458 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,27 +91,3 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: ./coverage.xml - - docker: - name: Build & Push Docker Image - runs-on: ubuntu-latest - needs: test - if: github.ref == 'refs/heads/main' - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Log in to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push Docker image - uses: docker/build-push-action@v5 - with: - context: . - push: true - tags: ghcr.io/${{ github.repository }}:latest