We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05a9514 commit 5ed1ce9Copy full SHA for 5ed1ce9
.github/workflows/heroku-deploy.yml
@@ -22,11 +22,11 @@ jobs:
22
env:
23
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
24
run: heroku container:login
25
- - name: Build and push
26
- env:
27
- HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
28
- run: heroku git:remote -a djangosnippets
29
- - name: Release
30
31
32
- run: git push heroku main
+ # - name: Build and push
+ # env:
+ # HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
+ # run: heroku git:remote -a djangosnippets
+ - name: Deploy to production
+ run: |
+ git push https://heroku:${{ secrets.HEROKU_API_KEY }}@git.heroku.com/djangosnippets.git main
+
0 commit comments