fix act_runner build job
Some checks failed
Build docker image and push to registry.bitdeals.org / main-build-job (push) Failing after 27s

This commit is contained in:
2026-03-06 12:19:23 +03:00
parent 9f083649ab
commit f354e1a1e8
2 changed files with 15 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ on:
- main
- master
schedule:
- cron: '40 10 * * 1'
- cron: '40 10 * * *'
jobs:
main-build-job:

View File

@@ -0,0 +1,14 @@
server {
server_name _;
location / {
proxy_pass http://localhost:8055;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
listen 80;
}