Merge pull request #159 from oras-project/contributors/update-2024-09-23 #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Docs | |
on: | |
push: | |
branches: [main] | |
jobs: | |
generate-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install Oras and Dependencies | |
run: | | |
root=$PWD | |
cd /tmp | |
git clone https://github.com/oras-project/oras-py | |
cd oras-py | |
pip install -e . | |
cd docs/ | |
pip install -r requirements.txt | |
make html | |
cp -R $root/.git _build/html/.git | |
rm -rf $root | |
mv _build/html $root | |
cd $root | |
touch .nojekyll | |
ls | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: . |