Skip to content

Commit 6d6429a

Browse files
committed
Remove Heroku from deployment process
1 parent ff77a74 commit 6d6429a

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

.github/workflows/heroku.yml renamed to .github/workflows/pre-release.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Deploy to Heroku
2+
name: Deploy to test.pypi.org
33
on:
44
push:
55
branches: [master]
@@ -23,11 +23,3 @@ jobs:
2323
run: |
2424
poetry config repositories.testpypi https://test.pypi.org/legacy/
2525
poetry publish --build -r testpypi --username ${{ secrets.TESTPYPI_USERNAME }} --password ${{ secrets.TESTPYPI_PASSWORD }} || :
26-
27-
- name: Deploy to Heroku
28-
uses: akhileshns/[email protected]
29-
with:
30-
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
31-
heroku_app_name: "django-jazzmin"
32-
heroku_email: "${{secrets.HEROKU_EMAIL}}"
33-
appdir: tests/test_app

.github/workflows/deploy.yml renamed to .github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
2-
3-
name: Deploy
2+
name: Deploy to pypi.org
43
on:
54
release:
65
types: [published, created, edited]
@@ -14,7 +13,7 @@ jobs:
1413
- name: Set up Python
1514
uses: actions/setup-python@v3
1615
with:
17-
python-version: '3.x'
16+
python-version: "3.x"
1817
cache: pip
1918

2019
- name: Install dependencies

0 commit comments

Comments
 (0)