Provide url to docs #41
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: Build documentation | |
on: | |
push: | |
paths: | |
- 'docs/**' | |
- 'README.md' | |
- '.github/workflows/documentation.yml' | |
env: | |
TITLE: Apos.Input | |
DESCRIPTION: Input library for MonoGame. | |
BASE: Apos.Input | |
REPO: https://github.com/Apostolique/Apos.Input/tree/main/ | |
URL: https://apostolique.github.io/Apos.Input/ | |
ANALYTICS: G-3Z4M42HTWS | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- name: Install apos-docs | |
run: npm install apos-docs -g | |
- name: Use apos-docs | |
run: | | |
apos-docs -t ${{ env.TITLE }} -d '${{ env.DESCRIPTION }}' -b ${{ env.BASE }} -r ${{ env.REPO }} -a ${{ env.ANALYTICS }} -u ${{ env.URL }} | |
cd apos-docs | |
npm i | |
npm run build | |
cd - | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./apos-docs/_site |