name: Deploy Catalogs on: push: branches: master paths: - 'catalogs/**' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Create Docker image run: | docker build -t torrentio-catalogs:latest ./catalogs/ docker save torrentio-catalogs:latest > torrentio_catalogs_latest.tar - name: Upload Docker image uses: appleboy/scp-action@master with: host: ${{ secrets.SCRAPER_SSH_HOST }} username: ${{ secrets.SCRAPER_SSH_USERNAME }} port: ${{ secrets.SCRAPER_SSH_PORT }} key: ${{ secrets.SCRAPER_SSH_KEY }} source: torrentio_catalogs_latest.tar target: /tmp/docker overwrite: true - name: Deploy Docker image uses: appleboy/ssh-action@master with: host: ${{ secrets.SCRAPER_SSH_HOST }} username: ${{ secrets.SCRAPER_SSH_USERNAME }} port: ${{ secrets.SCRAPER_SSH_PORT }} key: ${{ secrets.SCRAPER_SSH_KEY }} script: | docker load -i /tmp/docker/torrentio_catalogs_latest.tar docker stop torrentio-catalogs docker rm torrentio-catalogs docker run -p 80:7000 -d --name torrentio-catalogs--restart always -e MONGODB_URI=${{ secrets.SCRAPER_MONGODB_URI }} -e DATABASE_URI=${{ secrets.DATABASE_URI }} torrentio-catalogs:latest docker image prune -f