diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 2a39ba7449f2..19e83b4e8d8f 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -3,7 +3,7 @@ name: Docker Nightly Production on: push: branches: - - never + - mealie-next jobs: backend-tests: diff --git a/.github/workflows/scratch.yml b/.github/workflows/scratch.yml deleted file mode 100644 index 872f9796977b..000000000000 --- a/.github/workflows/scratch.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Docker Nightly Production - -on: - push: - branches: - - mealie-next - -jobs: - deploy-demo: - runs-on: ubuntu-latest - name: Deploy Demo - steps: - - name: Clean and Deploy Demo - uses: appleboy/ssh-action@master - with: - host: ${{ secrets.DEMO_SERVER_IP }} - username: ${{ secrets.DEMO_SERVER_USER }} - key: ${{ secrets.DEMO_SERVER_SSH_KEY }} - port: ${{ secrets.DEMO_SERVER_PORT }} - script_stop: true - script: | - cd ~/docker/mealie-next - docker-compose pull - docker-compose down -v - docker-compose up -d