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