From d57b626f93a0e1da34b2f9a1a33ca55f812bf5fb Mon Sep 17 00:00:00 2001 From: saturneric Date: Sun, 6 Jul 2025 02:31:45 +0200 Subject: refactor(ci): update docker job to support multiple environments * Changed `runs-on` from `ubuntu-latest` to `[ubuntu-latest, ubuntu-latest-server]` to allow for more flexible CI testing environments. --- .gitea/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index ca4e658..1b7ac7d 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -7,7 +7,7 @@ on: [push] jobs: docker: - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, ubuntu-latest-server] steps: # GitHub Actions do not automatically checkout your projects. If you need the code # you need to check it out. -- cgit v1.2.3