File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ urllib3==1.26.6
19
19
whitenoise==6.1.0
20
20
psycopg2-binary==2.9.3
21
21
djangorestframework==3.12.4
22
- django-htmx==1.11 .0
22
+ django-htmx==1.15 .0
23
23
gevent==22.10.2 # Updated version of gevent
24
24
greenlet==3.0.3 # Updated version of greenlet
25
+
Original file line number Diff line number Diff line change 1
- python-3.7.10
1
+ python-3.9.20
You can’t perform that action at this time.
0 commit comments