From bfc0c53ce809c9dcd8bc4c020b65103e594ffcc6 Mon Sep 17 00:00:00 2001 From: ChickenSellerRED Date: Mon, 11 Mar 2024 09:49:30 -0700 Subject: [PATCH] delte test workflow --- .github/workflows/main.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index e334ce5..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build and push the docker image to DockerHub - -on: - push: - branches: - - main - -jobs: - push_to_registry: - name: Push the docker image to DockerHub - runs-on: ubuntu-latest - steps: - - name: Check out the repo - uses: actions/checkout@v3 - - - name: Fetch code from Repository API - uses: actions/checkout@v3 - with: - repository: 'USC-InfoLab/w4h-api' - path: '.' - - - name: Login to DockerHub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Build and push Docker image - uses: docker/build-push-action@v4 - with: - context: . - push: true - tags: uscimsc/w4h:latest