temporary hotfix: play frikanalenloop bc. graphics are broken #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build playout package | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'packages/playout/**' | |
jobs: | |
build: | |
name: Build and push Docker images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout master | |
uses: actions/checkout@v2 | |
- name: Build docker | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: frikanalen/playout | |
tag_with_ref: true | |
path: packages/playout | |
dockerfile: packages/playout/Dockerfile |