tsMuxer/.github/workflows/linux.yml

32 lines
578 B
YAML
Raw Normal View History

2019-11-16 05:32:43 -08:00
name: Build for Linux
2019-11-24 11:50:28 -08:00
on:
push:
branches: [master]
2019-11-16 05:32:43 -08:00
jobs:
build:
runs-on: ubuntu-latest
2019-11-16 07:46:27 -08:00
container:
image: docker://justdan96/tsmuxer_build:latest
volumes:
- /workspace:/github/workspace
2019-11-16 05:32:43 -08:00
steps:
2019-11-16 07:46:27 -08:00
- uses: actions/checkout@master
2019-11-16 05:36:45 -08:00
name: checkout
2019-11-16 08:05:22 -08:00
- run: rm -f bin/.gitkeep
name: clean-bin-folder
- run: ./scripts/rebuild_linux_docker.sh
2019-11-16 05:36:45 -08:00
name: build-for-linux
2019-11-16 08:05:22 -08:00
- uses: actions/upload-artifact@master
with:
name: tsMuxer
2019-11-16 08:05:22 -08:00
path: bin
name: upload-artefact