Explorar el Código

Delete .github/workflows/docker-image.yml

Andy Esnard hace 1 año
padre
commit
8449943ce1
Se han modificado 1 ficheros con 0 adiciones y 31 borrados
  1. 0 31
      .github/workflows/docker-image.yml

+ 0 - 31
.github/workflows/docker-image.yml

@@ -1,31 +0,0 @@
-name: Build Docker Image
-
-on:
-  push:
-    branches:
-      - AniList
-  pull_request:
-    branches:
-      - AniList
-
-jobs:
-  build:
-    runs-on: ubuntu-latest
-
-    steps:
-      - name: Checkout code
-        uses: actions/checkout@v2
-
-      - name: Log in to DockerHub
-        run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
-        
-      - name: Build the Docker image
-        run: |
-          docker build . -t ${{ secrets.DOCKER_USERNAME }}/MyAnimeBot:${{ github.sha }} -t ${{ secrets.DOCKER_USERNAME }}/MyAnimeBot:anilist -t ${{ secrets.DOCKER_USERNAME }}/MyAnimeBot:latest
-
-      - name: Push the Docker image
-        run: docker push ${{ secrets.DOCKER_USERNAME }}/MyAnimeBot:${{ github.sha }}
-      - name: Push the Docker image with latest tag
-        run: docker push ${{ secrets.DOCKER_USERNAME }}/MyAnimeBot:anilist
-      - name: Push the Docker image with latest tag
-        run: docker push ${{ secrets.DOCKER_USERNAME }}/MyAnimeBot:latest