mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 15:43:14 +01:00
20 lines
No EOL
484 B
YAML
20 lines
No EOL
484 B
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
# - run: docker-compose build
|
|
# - run: docker-compose run web rake db:setup
|
|
# - run: docker-compose run web bin/run-tests
|
|
- uses: CDNievas/heroku-action@v1.0
|
|
with:
|
|
heroku_email: ${{secrets.HEROKU_EMAIL}}
|
|
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
|
|
heroku_app_name: "stadtratmonitor" |