Skip to content

bumped to 22.12.0

bumped to 22.12.0 #112

Workflow file for this run

name: Deploy to Development
on:
push:
branches:
- development
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Move event_data
run: |
cp -r event_data/ backend/
- name: Deploy Development Backend
uses: behe/heroku-build@v1
with:
app-name: "dev-branch-backend"
api-key: "${{secrets.HEROKU_API_KEY}}"
path: "./backend/"
- name: Build Frontend Filters
uses: actions/checkout@v2
run: make build_frontend
- name: Deploy Development Frontend
uses: behe/heroku-build@v1
with:
app-name: "dev-branch-frontend"
api-key: "${{secrets.HEROKU_API_KEY}}"
path: "./frontend/"