Skip to content

Update Changelog, pr #135 #16

Update Changelog, pr #135

Update Changelog, pr #135 #16

Workflow file for this run

name: Deploy docs
on:
push:
branches:
- main
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Setup mdBook
run: |
mkdir mdbook
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.14/mdbook-v0.4.14-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Build
run: |
python docs-export/export.py
python docs-repo/build.py
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs-repo
repository-name: trumank/ue4ss-docs
single-commit: true
ssh-key: ${{ secrets.DOCS_DEPLOY_KEY }}