Skip to content

Commit d07021f

Browse files
committed
Built The Docs Website
1 parent 9653479 commit d07021f

152 files changed

Lines changed: 1378 additions & 284 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,43 @@
1-
name: Deploy MkDocs
1+
name: Deploy PyEpicOdyssey site
2+
23
on:
34
push:
45
branches:
56
- main
7+
workflow_dispatch: # Allows manual trigger of the workflow
8+
69
permissions:
710
contents: write
11+
812
jobs:
9-
deploy:
13+
build-deploy:
1014
runs-on: ubuntu-latest
1115
steps:
12-
- uses: actions/checkout@v4
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
1318
with:
1419
fetch-depth: 0
20+
1521
- name: Set up Python
16-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v5
1723
with:
18-
python-version: '3.x'
24+
python-version: '3.11'
25+
cache: 'pip'
26+
1927
- name: Install dependencies
2028
run: |
2129
python -m pip install --upgrade pip
2230
pip install -r requirements.txt
23-
- name: Deploy
31+
32+
- name: Setup Git config
33+
run: |
34+
git config --global user.name "github-actions[bot]"
35+
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
36+
37+
- name: Build site
38+
run: mkdocs build
39+
40+
- name: Deploy to GitHub Pages
2441
run: mkdocs gh-deploy --force
42+
env:
43+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
site
2+
openai-agents-python
Binary file not shown.

OpAgentsOlympus/Practice/profile.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

OpAgentsOlympus/Practice/pyproject.toml

Lines changed: 0 additions & 13 deletions
This file was deleted.

OpAgentsOlympus/Practice/text.md

Lines changed: 0 additions & 131 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)