Skip to content

Commit

Permalink
auto commit docs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelhenry committed Aug 21, 2023
1 parent e66aeea commit c72063c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,19 @@ jobs:
--transform-for-static-hosting \
--output-path "./$VERSION_NAME" \
--hosting-base-path XConfigs
- run: mkdir docs && mv $VERSION_NAME docs
- run: mkdir -p docs && mv $VERSION_NAME docs

- name: Commit changes
run: |
git config user.name "[ci] kel"
git config user.email "[ci] me@iamkel.net]"
git add .
git commit -m "Auto-commit: Update docs with $VERSION_NAME."
- name: Push changes
run: |
git push origin $GITHUB_REF
- name: Setup Pages
uses: actions/configure-pages@v3

Expand Down

0 comments on commit c72063c

Please sign in to comment.