Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,23 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Detect Dockerfiles
id: dockerfiles
run: |
if [ -f Dockerfile.api ] || [ -f Dockerfile.web ] || [ -f Dockerfile.agents ]; then
echo "present=true" >> "$GITHUB_OUTPUT"
else
echo "present=false" >> "$GITHUB_OUTPUT"
echo "No platform Dockerfiles found; skipping Docker image builds for this corpus-only checkout."
fi

- name: Set up Docker Buildx
if: steps.dockerfiles.outputs.present == 'true'
uses: docker/setup-buildx-action@v3

- name: Build API image
if: steps.dockerfiles.outputs.present == 'true' && hashFiles('Dockerfile.api') != ''
uses: docker/build-push-action@v5
with:
context: .
Expand All @@ -155,6 +167,7 @@ jobs:
cache-to: type=gha,mode=max

- name: Build Web image
if: steps.dockerfiles.outputs.present == 'true' && hashFiles('Dockerfile.web') != ''
uses: docker/build-push-action@v5
with:
context: .
Expand All @@ -167,6 +180,7 @@ jobs:
cache-to: type=gha,mode=max

- name: Build Agent image
if: steps.dockerfiles.outputs.present == 'true' && hashFiles('Dockerfile.agents') != ''
uses: docker/build-push-action@v5
with:
context: .
Expand Down
14 changes: 14 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
title: Unity Equilibrium Theory (UET)
description: A research corpus for Unity Equilibrium Theory.

markdown: kramdown
highlighter: rouge

exclude:
- .git
- .github
- .venv
- node_modules
- services_and_experiments
- target
- uet_history
Loading