Skip to content

add link to fix docker context #2

add link to fix docker context

add link to fix docker context #2

Workflow file for this run

name: Heroku deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build, Push and Release a Docker container to Heroku. # Your custom step name
uses: gonuit/[email protected] # GitHub action name (leave it as it is).
run: ln -s ./apps/server Dockerfile.heroku
with:
email: ${{ secrets.HEROKU_EMAIL }}
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
heroku_app_name: ${{ secrets.HEROKU_APP_NAME }}
dockerfile_directory: Dockerfile.heroku
dockerfile_name: Dockerfile
docker_options: "--no-cache"
process_type: web