add catalogs deployment

This commit is contained in:
TheBeastLT
2022-04-01 13:55:30 +02:00
parent b143449f77
commit 7a3b1721d3
2 changed files with 46 additions and 1 deletions

44
.github/workflows/deploy_catalogs.yml vendored Normal file
View File

@@ -0,0 +1,44 @@
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