diff options
author | saturneric <[email protected]> | 2025-07-06 00:31:45 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-07-06 00:31:45 +0000 |
commit | d57b626f93a0e1da34b2f9a1a33ca55f812bf5fb (patch) | |
tree | bef4585ba0d820fff689cdecce97f6d0591f0368 | |
parent | refactor(nginx): simplify location block and remove caching configuration (diff) | |
download | Manual-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.yaml | 2 |
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. |