git updates

This commit is contained in:
2025-09-09 16:26:07 -04:00
parent f29d060d59
commit 27cb38c3bb
5 changed files with 117 additions and 98 deletions
+14 -1
View File
@@ -40,4 +40,17 @@ docker tag hello-world gitea.skalas.org/jskala/test:latest
docker push gitea.skalas.org/jskala/test:latest
```
After enabling packages, your workflow should work!
After enabling packages, your workflow should work!
## 5. Performance tip: Use local network for same-host setups
If your runner and Gitea are on the same host, use the local IP to avoid Cloudflare tunnel overhead:
```bash
# Much faster for same-host setups
docker login 192.168.253.221:3000
docker tag hello-world 192.168.253.221:3000/jskala/test:latest
docker push 192.168.253.221:3000/jskala/test:latest
```
This bypasses the tunnel completely and should be very fast!