fix(cd): remove demo and staging workflows
This commit is contained in:
parent
163eb104b6
commit
f805fd0eb8
4 changed files with 0 additions and 47 deletions
18
.github/workflows/cd_heroku.yml
vendored
18
.github/workflows/cd_heroku.yml
vendored
|
@ -1,18 +0,0 @@
|
|||
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
|
21
.github/workflows/cd_heroku_staging.yml
vendored
21
.github/workflows/cd_heroku_staging.yml
vendored
|
@ -1,21 +0,0 @@
|
|||
name: cd-heroku-staging
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
workflow_dispatch: {}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
environment:
|
||||
name: staging
|
||||
url: https://hexxa-quickshare-staging.herokuapp.com/
|
||||
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-staging"
|
||||
heroku_email: "hexxa@outlook.com"
|
||||
usedocker: true
|
Loading…
Add table
Add a link
Reference in a new issue