From 89b11dee4a2a8ac4aead741a65a5b6519cad0d4a Mon Sep 17 00:00:00 2001 From: hasslesstech Date: Sat, 24 May 2025 21:05:40 +0300 Subject: [PATCH] update workflow --- .gitea/workflows/custom-containers.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.gitea/workflows/custom-containers.yaml b/.gitea/workflows/custom-containers.yaml index 045c57b..dcec771 100644 --- a/.gitea/workflows/custom-containers.yaml +++ b/.gitea/workflows/custom-containers.yaml @@ -7,6 +7,12 @@ jobs: build-debian: runs-on: hardware steps: + - name: Pull repository with dockerfiles + run: | + git init + git remote add gitea http://10.1.1.1:3000/hasslesstech/test3 + git fetch + git checkout master - name: Pull latest official image run: docker pull debian - name: Build new image @@ -17,6 +23,12 @@ jobs: build-arch: runs-on: hardware steps: + - name: Pull repository with dockerfiles + run: | + git init + git remote add gitea http://10.1.1.1:3000/hasslesstech/test3 + git fetch + git checkout master - name: Pull latest official image run: docker pull archlinux - name: Build new image @@ -27,6 +39,12 @@ jobs: build-void: runs-on: hardware steps: + - name: Pull repository with dockerfiles + run: | + git init + git remote add gitea http://10.1.1.1:3000/hasslesstech/test3 + git fetch + git checkout master - name: Pull latest official image run: docker pull voidlinux/voidlinux - name: Build new image @@ -37,6 +55,12 @@ jobs: build-alpine: runs-on: hardware steps: + - name: Pull repository with dockerfiles + run: | + git init + git remote add gitea http://10.1.1.1:3000/hasslesstech/test3 + git fetch + git checkout master - name: Pull latest official image run: docker pull alpine - name: Build new image