Scope documentation CI and isolate delivery job resources

This commit is contained in:
2026-09-11 08:10:38 +00:00
parent 6f7549d439
commit 7d64b94d7a
2 changed files with 50 additions and 0 deletions
+11
View File
@@ -9,5 +9,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Select relevant delivery work
id: delivery
env:
DELIVERY_EVENT: ${{ github.event_name }}
DELIVERY_REF: ${{ github.ref }}
DELIVERY_SHA: ${{ github.sha }}
DELIVERY_BASE: ${{ github.event.pull_request.base.sha || github.event.before }}
run: |
cd .
bash scripts/ci-select.sh
- name: Build image
if: ${{ steps.delivery.outputs.run == 'true' }}
run: make docker-build IMAGE_TAG=${{ gitea.sha }}