aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-07-06 00:31:45 +0000
committersaturneric <[email protected]>2025-07-06 00:31:45 +0000
commitd57b626f93a0e1da34b2f9a1a33ca55f812bf5fb (patch)
treebef4585ba0d820fff689cdecce97f6d0591f0368
parentrefactor(nginx): simplify location block and remove caching configuration (diff)
downloadManual-d57b626f93a0e1da34b2f9a1a33ca55f812bf5fb.tar.gz
Manual-d57b626f93a0e1da34b2f9a1a33ca55f812bf5fb.zip
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.
-rw-r--r--.gitea/workflows/ci.yaml2
1 files changed, 1 insertions, 1 deletions
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.