added in gitea actions
Some checks failed
Gitea Actions Demo / build-and-push (push) Failing after 7s

This commit is contained in:
2026-01-13 15:36:42 -05:00
parent 007187020b
commit 96ccc1b04c

View File

@@ -26,6 +26,12 @@ jobs:
run: |
docker build -t gitea-server:3000/ryan/chore:${{ steps.vars.outputs.tag }} .
- name: Resolve Gitea Server IP
id: gitea_ip
run: |
ip=$(getent hosts gitea-server | awk '{ print $1 }')
echo "GITEA_IP=$ip" >> $GITHUB_ENV
- name: Log in to Registry
uses: docker/login-action@v2
with: