From 92020e68cecdc1ae1f6a3e536f6f0f0bccdc9567 Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Tue, 13 Jan 2026 15:52:57 -0500 Subject: [PATCH] added in gitea actions --- .gitea/workflows/build.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 4153464..095ff68 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -9,7 +9,16 @@ on: jobs: build-and-push: runs-on: ubuntu-latest + container: + image: ubuntu-latest + volumes: + - /tmp/gitea_ip.txt:/gitea_ip.txt steps: + - name: Resolve Gitea Server IP + run: | + ip=$(getent hosts gitea-server | awk '{ print $1 }') + echo "$ip" > /tmp/gitea_ip.txt + - name: Check out repository code uses: actions/checkout@v3