Skip to content

Try Prcfile

Try Prcfile #2

Workflow file for this run

name: Deploy To Staging
on:
push:
branches:
- frontend-deploy
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: akhileshns/[email protected] # This is the action
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: "hylo-evo-staging" #Must be unique in Heroku
heroku_email: "[email protected]"
buildpack: "heroku/nodejs"
- name: install build plugin
run: heroku plugins:install heroku-builds
- name: deploy tarball
run: cd apps/web/dist && heroku builds:create -a hylo-evo-staging