Skip to content

Commit

Permalink
gha: Update and bifurcate logic
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Mar 21, 2021
1 parent 8e71ba8 commit 60f22d9
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 8 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/apidoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Build Documentation"
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Run image
uses: abatilo/[email protected]
with:
poetry-version: 1.1.2
- name: Prep dependencies
run: poetry install
- name: Build docs
run: poetry run sphinx-build docs ./genDocs
- name: Deploy Documentation
if: ${{ (github.ref == 'refs/heads/main' && github.repository == 'HaoZeke/wailord') || (github.ref == 'refs/heads/master' && github.repository == 'HaoZeke/wailord')}}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./genDocs
10 changes: 2 additions & 8 deletions .github/workflows/build_wailord.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,12 @@ jobs:
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Prep dependencies
run: poetry install
- name: Test project
run: poetry run pytest
- name: Build project
run: poetry build
- name: Build docs
run: poetry run sphinx-build docs ./genDocs
- name: Deploy Documentation
if: ${{ (github.ref == 'refs/heads/main' && github.repository == 'HaoZeke/wailord') || (github.ref == 'refs/heads/master' && github.repository == 'HaoZeke/wailord')}}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./genDocs
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/doc_builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Build Documentation"
on: [push, pull_request]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9]
poetry-version: [1.0, 1.1.2]
os: [ubuntu-18.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Test project
run: poetry run pytest
- name: Build project
run: poetry build
- name: Build docs
run: poetry run sphinx-build docs ./genDocs
- name: Deploy Documentation
if: ${{ (github.ref == 'refs/heads/main' && github.repository == 'HaoZeke/wailord') || (github.ref == 'refs/heads/master' && github.repository == 'HaoZeke/wailord')}}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./genDocs
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 60f22d9

Please sign in to comment.