Skip to content

Commit

Permalink
Add CI workflow for continuous integration and deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
XuhuiZhou committed Apr 7, 2024
1 parent 1211dfc commit 6ba721e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ci
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material
- run: pip install pillow cairosvg
- run: mkdocs gh-deploy --force
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
site_name: awesome-social-agents
docs_dir: '.'

theme:
name: material
Expand Down

0 comments on commit 6ba721e

Please sign in to comment.