Update workflow runner labels to docker
Some checks failed
CI / tongo-core (push) Failing after 3m43s
CI / web-terminal (push) Successful in 1m46s
Deploy / build-and-push (push) Failing after 5s
Deploy / deploy (push) Has been skipped

This commit is contained in:
Pedro Faria da Costa 2026-07-05 23:57:37 +01:00
parent b6bc68de23
commit 1508f5c558
No known key found for this signature in database
3 changed files with 6 additions and 6 deletions

View file

@ -9,7 +9,7 @@ on:
jobs:
# ── Go Backend ──────────────────────────────────────────
tongo-core:
runs-on: self-hosted
runs-on: docker
steps:
- uses: actions/checkout@v4
@ -34,7 +34,7 @@ jobs:
# ── Frontend ────────────────────────────────────────────
web-terminal:
runs-on: self-hosted
runs-on: docker
steps:
- uses: actions/checkout@v4

View file

@ -12,7 +12,7 @@ env:
jobs:
build-and-push:
runs-on: self-hosted
runs-on: docker
steps:
- uses: actions/checkout@v4
@ -40,7 +40,7 @@ jobs:
docker push $IMAGE_WEB:latest
deploy:
runs-on: self-hosted
runs-on: docker
needs: build-and-push
steps:
- uses: actions/checkout@v4

View file

@ -10,7 +10,7 @@ on:
jobs:
plan:
runs-on: self-hosted
runs-on: docker
steps:
- uses: actions/checkout@v4
@ -44,7 +44,7 @@ jobs:
path: infra/tfplan
apply:
runs-on: self-hosted
runs-on: docker
needs: plan
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
steps: