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.
2 parents d671ebd + 9724e43 commit 22206b6Copy full SHA for 22206b6
.github/workflows/main.yml
@@ -53,3 +53,20 @@ jobs:
53
run: bash <(curl -s https://codecov.io/bash)
54
env:
55
CODECOV_TOKEN: '1b5eacd0-b422-4654-970d-84acdb03cf53'
56
+
57
+ deploy:
58
+ needs:
59
+ - test
60
+ if: "success() && startsWith(github.ref, 'refs/tags/')"
61
+ runs-on: ubuntu-latest
62
63
+ env:
64
+ HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
65
+ HEROKU_APP: tc-morpheus
66
67
+ steps:
68
+ - uses: actions/checkout@v2
69
+ - run: git fetch --unshallow
70
+ - run: git switch master
71
+ - run: git remote add heroku https://heroku:[email protected]/$HEROKU_APP.git
72
+ - run: git push heroku master
0 commit comments