Automated deployment to update contributors 2023-10-05 (#110) #65
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@v3 | |
with: | |
ref: gh-pages | |
- name: Create conda environment | |
run: conda create --quiet -c conda-forge --name oraspy | |
- name: Install Oras and Dependencies | |
run: | | |
export PATH="/usr/share/miniconda/bin:$PATH" | |
root=$PWD | |
source activate oraspy | |
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@ba1486788b0490a235422264426c45848eac35c6 # v4.4.1 | |
with: | |
branch: gh-pages | |
folder: . |