Skip to content

Commit

Permalink
Create documentation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Foereaper authored Jan 18, 2024
1 parent 72ed7d5 commit 6e53b76
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: documentation
on:
push:
branches:
- 'main'
- 'master'
jobs:
Push-Docs-To-Website:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- name: Install Python dependencies
run: pip install jinja2 typedecorator markdown
- name: Compile documentation
run: |
cd ${{ github.workspace }}/docs/
python -m ElunaDoc
- name: Create pull request
run: |
chmod +x "${GITHUB_WORKSPACE}/.github/workflows/create-pr.sh"
"${GITHUB_WORKSPACE}/.github/workflows/create-pr.sh"
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
SOURCE_FOLDER: '${{ github.workspace }}/docs/build'
DESTINATION_REPO: 'elunaluaengine/elunaluaengine.github.io'
DESTINATION_FOLDER: ''
DESTINATION_BASE_BRANCH: 'master'
DESTINATION_HEAD_BRANCH: 'master'
PR_TITLE: 'Update Eluna documentation'
COMMIT_MESSAGE: 'Update Eluna documentation'
USER_EMAIL: '[email protected]'
USER_NAME: 'Foereaper'

0 comments on commit 6e53b76

Please sign in to comment.