feat(workflow): add heroku cd workflow
This commit is contained in:
parent
b82fc6e8af
commit
0d8687d0a0
1 changed files with 18 additions and 0 deletions
18
.github/workflows/cd_heroku.yml
vendored
Normal file
18
.github/workflows/cd_heroku.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: cd-heroku
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
workflow_dispatch: {}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: akhileshns/heroku-deploy@v3.12.12 # This is the action
|
||||
with:
|
||||
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
|
||||
heroku_app_name: "hexxa-quickshare"
|
||||
heroku_email: "hexxa@outlook.com"
|
||||
usedocker: true
|
Loading…
Add table
Add a link
Reference in a new issue