From 4610558e52fab98fcb4bb2878c4381903b2473b3 Mon Sep 17 00:00:00 2001 From: "Ada Baumann (she/her)" Date: Wed, 23 Oct 2024 04:26:52 +0000 Subject: [PATCH] Add .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..df21f7b --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,27 @@ +name: Build runner images + +on: + schedule: + - cron: 59 23 */7 * * + push: + paths: + - '.github/workflows/build.yml' + branches: + - 'main' + pull_request: + paths: + - '.github/workflows/build.yml' + +jobs: + build-images: + name: Build Images + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install Docker on host + run: | + apt update + apt upgrade -y + apt install docker.io docker-compose docker-compose-v2 python3-setuptools -y + dockerd & + - \ No newline at end of file