From a7e384389c325de5e0115a0e2cd4ea94723a0461 Mon Sep 17 00:00:00 2001 From: Chris Hartwig Date: Fri, 15 Dec 2023 10:52:55 +0700 Subject: [PATCH] cleanup ci cd --- .github/workflows/docker-image.yaml | 31 ----------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/docker-image.yaml diff --git a/.github/workflows/docker-image.yaml b/.github/workflows/docker-image.yaml deleted file mode 100644 index 73d744e..0000000 --- a/.github/workflows/docker-image.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build and Push Docker Image - -on: - push: - tags: - - "*" - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Login to GitHub Container Registry - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push Docker image - uses: docker/build-push-action@v2 - with: - context: . - push: true - tags: "ghcr.io/${{ github.repository }}/auth-handler:${{ github.ref }}"