Files
RESTapi_demo/.github/workflows/main.yml
T

17 lines
378 B
YAML

name: Deploy
on:
push:
branches:
- master
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: "gregs-rest-api-demo"
heroku_email: "gjcampbell777@gmail.com"