Skip to content

Commit

Permalink
docs: new docs job
Browse files Browse the repository at this point in the history
  • Loading branch information
RitikShah committed Nov 10, 2021
1 parent 3a2f01f commit 3cebc5d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Docs

on:
workflow_dispatch:
push:
branches: [main]
paths:
- "docs/**"
- "README.md"
- "pyproject.toml"

jobs:
main:
name: Build and deploy
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install Poetry
uses: snok/install-poetry@v1.2.1
with:
virtualenvs-in-project: true
- name: Setup cache
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --extras image
- name: Build and deploy documentation
run: |
git config --global user.name "github-actions"
git config --global user.email "action@github.com"
poetry run mudkip build --check --update-gh-pages --repository https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
2 changes: 0 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
uses: snok/install-poetry@v1.2.1
with:
virtualenvs-in-project: true
- name: Install Pyright
run: npm install
- name: Setup cache
id: cached-poetry-dependencies
uses: actions/cache@v2
Expand Down

0 comments on commit 3cebc5d

Please sign in to comment.