From 0292cb6659852ffc0815a5559eca358e618d7435 Mon Sep 17 00:00:00 2001 From: Mitchell Krog Date: Mon, 21 Jun 2021 15:07:01 +0200 Subject: [PATCH] [GHA] fix nginx --- .github/workflows/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 47e7e9d50..ab7f02070 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -14,6 +14,13 @@ on: branches: - master +services: + nginx: + image: nginx + # Map port 8080 on the Docker host to port 80 on the nginx container + ports: + - 8080:80 + jobs: build: if: "!contains(github.event.head_commit.message, 'skip ci')"