Merge pull request #61 from issp-center-dev/fix_60 #106
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: deploy | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- '!gh-pages' | |
- changedocs | |
tags: '*' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Inject slug/short variables | |
uses: rlespinasse/[email protected] | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: main | |
fetch-depth: 0 | |
- name: Checkout gh-pages | |
uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
path: gh-pages | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install pandoc | |
python -m pip install --upgrade pip setuptools wheel | |
pip install tox tox-gh-actions | |
- name: Build docs with tox | |
env: | |
TARGET_NAME: ${{ env.GITHUB_REF_SLUG }} | |
run: | | |
cd main | |
tox run -e docs | |
cd ../ | |
- name: Deploy Configuration | |
run: | | |
mkdir ~/.ssh | |
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts | |
echo "${{ secrets.GH_ACTIONS_DEPLOY_KEY }}" > ~/.ssh/id_rsa | |
chmod 400 ~/.ssh/id_rsa | |
- name: Push | |
env: | |
GIT_USER: "PHYSBO Developers" | |
GIT_EMAIL: "[email protected]" | |
TARGET_NAME: ${{ env.GITHUB_REF_SLUG }} | |
run: | | |
cd ${GITHUB_WORKSPACE} | |
for lang in ja en; do | |
rm -rf "gh-pages/manual/${TARGET_NAME}/${lang}" | |
mkdir -p "gh-pages/manual/${TARGET_NAME}" | |
cp -r "main/.tox/docs_out/manual/${lang}" "gh-pages/manual/${TARGET_NAME}/" | |
done | |
cd gh-pages | |
git config --local user.name "${GIT_USER}" | |
git config --local user.email "${GIT_EMAIL}" | |
git remote set-url origin [email protected]:${GITHUB_REPOSITORY}.git | |
git add manual | |
if git commit -m "Deploy docs to ${TARGET_NAME} by GitHub Actions triggered by ${GITHUB_SHA}" | |
then | |
git push origin gh-pages | |
else | |
echo "Nothing to deploy" | |
fi |