Skip to content

v1.0.0

v1.0.0 #2

Workflow file for this run

# https://www.trywilco.com/post/wilco-ci-cd-github-heroku
name: Continuous Deployment
# This action works when creating a tag or release
on:
release:
types:
- "released"
push:
tags:
- "release-*"
- "rollback-*"
jobs:
deploy-production:

Check failure on line 16 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / Continuous Deployment

Invalid workflow file

The workflow is not valid. .github/workflows/cd.yml (Line: 16, Col: 2): The workflow must contain at least one job with no dependencies.
needs:
- ci-checks
- lint
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- uses: akhileshns/[email protected]
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: "<your app name here>"
heroku_email: "<your email address>"
team: "<team name>"
dontautocreate: true # do not create the app if it doesn't exist