Ignore device number mismatch on overlay filesystem (Linux only) #6
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
on: | |
push: | |
branches: [master] | |
jobs: | |
gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install doxygen | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y doxygen | |
- name: genereate docs | |
run: | | |
doxygen | |
sed -i -e 's/:smiley:/\😃/g' -e 's/:skull:/\💀/g' html/index.html | |
- name: push docs | |
run: | | |
git fetch --depth=1 origin gh-pages | |
git checkout gh-pages | |
rm -rf docs | |
mv html docs | |
git config --local user.email "docs-action@github.com" | |
git config --local user.name "GitHub Action (docs)" | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | |
git diff --quiet || (git add docs && git commit -m 'Add docs' && git push origin gh-pages && echo Add docs) |