Skip to content

Commit f721c07

Browse files
committed
Fixing heroku deploy
1 parent 6b85b18 commit f721c07

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/heroku-deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jobs:
88
runs-on: ubuntu-latest # Setup an environment to run the action
99
steps:
1010
- uses: actions/checkout@v2 # This actions copy the repository on the environment
11+
- name: Install Heroku CLI # <- IMPORTANT!!! Make sure the cli is installed before using the action
12+
run: |
13+
curl https://cli-assets.heroku.com/install.sh | sh
1114
- uses: akhileshns/[email protected] # This action deploys the content on Heroku
1215
with:
1316
heroku_api_key: ${{secrets.HEROKU_API_KEY}} #The Heroku api key we stored on our repo secret

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11

requirements/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bleach==5.0.0
1+
bleach==6.2.0
22
Django==3.2.15
33
dj-database-url==0.5.0
44
django-allauth==0.50.0

runtime.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)