Ver código fonte

Delete .github/workflows/docker-publish.yml

Andy Esnard 1 ano atrás
pai
commit
9c2d560399
1 arquivos alterados com 0 adições e 31 exclusões
  1. 0 31
      .github/workflows/docker-publish.yml

+ 0 - 31
.github/workflows/docker-publish.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