diff --git a/.github/workflows/ci-runner.yml b/.github/workflows/ci-runner.yml index 2f76c9e2..9b68196c 100644 --- a/.github/workflows/ci-runner.yml +++ b/.github/workflows/ci-runner.yml @@ -24,4 +24,4 @@ jobs: DISPATCH_DATA: ${{ inputs.dispatchData }} steps: - - run: /ci/run_ci.py + - run: /run_ci.py diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a67653b6..37b7d3e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,4 +37,4 @@ jobs: OLD_SHA: ${{ github.event.before }} IS_FORCE_PUSH: ${{ github.event.forced }} steps: - - run: /ci/spawn_jobs.py + - run: /spawn_jobs.py diff --git a/ci/Dockerfile b/ci/Dockerfile index a3955fc6..92c31fa4 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,3 +1,4 @@ FROM alpine:latest RUN apk add python3 docker git -COPY ci . +COPY ci/spawn_jobs.py . +COPY ci/run_ci.py .