Update doxygen_build_deploy.yml

This commit is contained in:
Jan W. Krieger 2022-04-22 21:54:38 +02:00 committed by GitHub
parent 4193d6ec9c
commit 9cd1462a77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,14 +21,14 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job # Steps represent a sequence of tasks that will be executed as part of the job
steps: steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Repo - uses: actions/checkout@v3
run: | with:
mkdir JKQtPlotter path: JKQtPlotter
mkdir JKQtPlotter_doc
git clone -o mine git@github.com:jkriege2/JKQtPlotter.git $GITHUB_WORKSPACE/JKQtPlotter - uses: actions/checkout@v3
git clone -o mine git@github.com:jkriege2/JKQtPlotter.git $GITHUB_WORKSPACE/JKQtPlotter_doc with:
ls JKQtPlotter_doc ref: gh-pages
ls JKQtPlotter path: JKQtPlotter_doc
- name: Install dependencies - name: Install dependencies
run: | run: |
@ -55,12 +55,10 @@ jobs:
cd .. cd ..
cd .. cd ..
- name: Deploy to gh-pages - name: Deploy to GitHub Pages
run: | uses: JamesIves/github-pages-deploy-action@3.7.1
cd JKQtPlotter_doc with:
rm -rf * github_token: ${{ secrets.GH_PAGES_SECRET }}
mv ../JKQtPlotter/doc/html . branch: gh-pages
git add ** folder: JKQtPlotter/doc/html
git commit -am "Generated API doc"
git push -f mine gh-pages:gh-pages