Merge branch 'main' of github.com:PhilippMDoerner/Snorlogue #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: github pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
api-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache choosenim | |
id: cache-choosenim | |
uses: actions/cache@v3 | |
with: | |
path: ~/.choosenim | |
key: ${{ runner.os }}-choosenim-stable | |
- name: Cache nimble | |
id: cache-nimble | |
uses: actions/cache@v3 | |
with: | |
path: ~/.nimble | |
key: ${{ runner.os }}-nimble-${{ hashFiles('snorlogue.nimble') }} | |
restore-keys: | | |
${{ runner.os }}-nimble- | |
- name: Setup nim | |
uses: jiro4989/[email protected] | |
with: | |
nim-version: stable | |
- name: Install Packages | |
run: nimble install -y | |
- name: Build API docs | |
run: nimble --verbose apis | |
- name: Build nimibook docs | |
run: nimble --verbose nimidocs | |
- name: Archive API docs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: api-docs | |
path: | | |
docs/coreapi | |
docs/plugin | |
docs/bookCompiled | |
deploy-docs: | |
needs: | |
- api-docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download all docs | |
uses: actions/download-artifact@v3 | |
- name: Check files | |
run: | | |
find . | |
- name: Setup docs | |
run: | | |
mv api-docs/plugin docs/ | |
mv api-docs/bookCompiled docs/ | |
- name: Deploy | |
if: success() | |
uses: crazy-max/[email protected] | |
with: | |
target_branch: gh-pages | |
build_dir: ./docs | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} |