owncast/.github/workflows/buildmaster.yaml

41 lines
No EOL
848 B
YAML

name: Build Owncast
on:
push:
branches:
- master
pull_request:
branches: master
jobs:
build:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v2
- name: Build
run: go build -o owncast *.go
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Copy default config file
run: cp config-example.yaml config.yaml
- name: Build Docker image
run: docker build -t owncast .
- name: Run Docker image
run: docker run -d -p 8080:8080 -p 1935:1935 owncast