From a9a46a4493989efe326acbfce63b246483087d18 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 14 Jul 2020 18:22:07 -0700 Subject: [PATCH] Run the container in the background so Github actions does not get hung up --- .github/workflows/buildmaster.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildmaster.yaml b/.github/workflows/buildmaster.yaml index ceb544f41..6ea1c662a 100644 --- a/.github/workflows/buildmaster.yaml +++ b/.github/workflows/buildmaster.yaml @@ -38,4 +38,4 @@ jobs: run: docker build -t owncast . - name: Run Docker image - run: docker run -p 8080:8080 -p 1935:1935 owncast \ No newline at end of file + run: docker run -d -p 8080:8080 -p 1935:1935 owncast \ No newline at end of file