From d253b144fb8bc8010fbe0e567500e83054f2350c Mon Sep 17 00:00:00 2001 From: Daithi Hearn Date: Thu, 7 Dec 2023 22:24:43 +0100 Subject: [PATCH] run on github hosted hardware --- .github/workflows/build-docker-image.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index 986cac1..145b077 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -1,16 +1,16 @@ name: Build Docker image on: - workflow_dispatch: - pull_request: - branches: ["main"] + workflow_dispatch: + pull_request: + branches: ["main"] jobs: - build: - name: Build docker image - runs-on: self-hosted + build: + name: Build docker image + runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Build the Docker image - run: docker build . --file Dockerfile + steps: + - uses: actions/checkout@v3 + - name: Build the Docker image + run: docker build . --file Dockerfile