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

This commit is contained in:
2026-01-13 10:35:35 -05:00
parent 3091c5ca97
commit 0fd9c2618d

View File

@@ -24,13 +24,13 @@ jobs:
- name: Build Docker Image
run: |
docker build -t 172.26.0.4:3000/ryan/chore:${{ steps.vars.outputs.tag }} .
docker build -t gitea-server:3000/ryan/chore:${{ steps.vars.outputs.tag }} .
- name: Log in to Registry
run: |
# Use your Gitea credentials (secrets are safer, but this works for testing)
echo "0x013h" | docker login 172.26.0.4:3000 -u ryan --password-stdin
echo "0x013h" | docker login gitea-server:3000 -u ryan --password-stdin
- name: Push Image to Gitea Registry
run: |
docker push 172.26.0.4:3000/ryan/chore:${{ steps.vars.outputs.tag }}
docker push gitea-server:3000/ryan/chore:${{ steps.vars.outputs.tag }}