From d602daa8e58d1b6fbf619ba345a236858794ddc8 Mon Sep 17 00:00:00 2001 From: Henry Date: Thu, 8 May 2025 13:20:30 +0100 Subject: [PATCH] fix: remove github workflows --- .github/workflows/docker-image.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml deleted file mode 100644 index 0f2ad4d2..00000000 --- a/.github/workflows/docker-image.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Docker Image CI - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - - build: - - runs-on: ubuntu-latest - - steps: - - name: Log in to GitHub Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - uses: actions/checkout@v4 - - name: Build and push the Docker image - run: | - echo "GITHUB_REPOSITORY=${{ github.repository }}" >> $GITHUB_ENV - docker compose build - docker compose push