Skip to content

Commit 5f832e1

Browse files
Merge branch 'main' into Inquisitive_Kunal-fix-issue-481,393
2 parents 2c78077 + f48869e commit 5f832e1

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Deploy # The name of the workflow
2+
on:
3+
push:
4+
branches:
5+
- main #Launch the action on every push on the branch main
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest # Setup an environment to run the action
9+
steps:
10+
- uses: actions/checkout@v2 # This actions copy the repository on the environment
11+
- uses: akhileshns/[email protected] # This action deploys the content on Heroku
12+
with:
13+
heroku_api_key: ${{secrets.HEROKU_API_KEY}} #The Heroku api key we stored on our repo secret
14+
heroku_app_name: "djangosnippets" #The name of your heroku app - Must be unique in Heroku
15+
heroku_email: "[email protected]" #Your heroku yuser name
16+
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+

requirements/base.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ urllib3==1.26.6
1919
whitenoise==6.1.0
2020
psycopg2-binary==2.9.3
2121
djangorestframework==3.12.4
22-
django-htmx==1.11.0
22+
django-htmx==1.15.0
2323
gevent==22.10.2 # Updated version of gevent
2424
greenlet==3.0.3 # Updated version of greenlet
25+

runtime.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.7.10
1+
python-3.9.20

0 commit comments

Comments
 (0)