Skip to content

Commit

Permalink
feat: Update GitHub Actions workflow to use Ubuntu 22.04 and install …
Browse files Browse the repository at this point in the history
…Render CLI
  • Loading branch information
AhmedNassar7 committed Dec 14, 2024
1 parent 689ef2d commit b1a7a81
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.9]
Expand All @@ -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 }}
Expand Down

0 comments on commit b1a7a81

Please sign in to comment.