Update doc.yml

This commit is contained in:
Anonymus Raccoon
2020-02-13 19:04:40 +01:00
committed by GitHub
parent fbd10e8f48
commit 9276f8525e
+3 -3
View File
@@ -12,7 +12,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Install Doxygen - name: Install Doxygen
run: sudo apt-get install --yes doxygen run: sudo apt-get install --yes doxygen graphviz
- name: Update the docs - name: Update the docs
run: doxygen Doxyfile run: doxygen Doxyfile
- name: Deploy - name: Deploy
@@ -22,7 +22,7 @@ jobs:
git checkout -B gh-pages; git checkout -B gh-pages;
git add -A; git add -A;
git commit -m "Deploying the doc"; git commit -m "Deploying the doc";
git remote set-url --push origin https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/Gegel85/GameJam2020; git remote set-url --push origin https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/AnonymusRaccoon/ComSquare;
git push origin gh-pages --quiet --force; git push origin gh-pages --quiet --force;
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}