diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index 37163c2..6705f77 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -8,7 +8,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: matrix: python-version: [3.9] @@ -35,6 +35,11 @@ jobs: run: | poetry export --without-hashes -o requirements.txt + - name: Install Render CLI + run: | + curl -fsSL https://render.com/static/cli/install.sh | bash + echo 'export PATH="$HOME/.render:$PATH"' >> $GITHUB_ENV + - name: Deploy to Render env: SECRET_KEY: ${{ secrets.SECRET_KEY }}