Skip to content

Ploomber Cloud

Ploomber Cloud #237

name: Ploomber Cloud
on:
schedule:
- cron: '0 1 * * *'
jobs:
deploy-to-ploomber-cloud:
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ploomber-cloud
- name: Create environment file
shell: bash
env:
SECRET_URL: ${{ secrets.SUPABASE_URL }}
SECRET_KEY: ${{ secrets.SUPABASE_KEY }}
run: |
printf "SUPABASE_URL=\"$SECRET_URL\"\nSUPABASE_KEY=\"$SECRET_KEY\"" > ./app/.env
- name: Deploy
env:
PLOOMBER_CLOUD_KEY: ${{ secrets.PLOOMBER_CLOUD_KEY }}
run: |
cd app/
cat .env
ploomber-cloud deploy --watch
# The --watch flag will print deployment status updates to the logs.
# To learn more, visit: https://docs.cloud.ploomber.io/en/latest/user-guide/github.html