Skip to content

Commit

Permalink
workflow: Iron out some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuxel committed Sep 26, 2023
1 parent ead8a04 commit 710c79e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/update_libgui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,14 @@ jobs:
- name: Move docs
run: |
rm -rf docs/libgui/*
cp -R libgui/build/docs/javadoc/ docs/libgui
cp -R libgui/build/docs/javadoc/* docs/libgui
- name: Commit docs
run: |
cd docs
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add libgui
git commit --allow-empty -m "LibGui ${{steps.find-latest.outputs.latest-name}}"
git commit --allow-empty -m "LibGui $LATEST_NAME"
git push
env:
LATEST_NAME: ${{steps.find-latest.outputs.latest-name}}

0 comments on commit 710c79e

Please sign in to comment.