Skip to content

Fix weeding tests because big_weed was removed (#186) #22

Fix weeding tests because big_weed was removed (#186)

Fix weeding tests because big_weed was removed (#186) #22

Workflow file for this run

name: Upload Python Package
on:
workflow_dispatch:
push:
tags:
- v**
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python3 -m pip install -r requirements.txt
python3 -m pip install -r mkdocs_requirements.txt
python3 -m pip install -e .
- name: Build docs
run: mkdocs build -v
- name: Analyze
run: |
pwd
ls -lha
- name: Deploy gh-pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: site
- name: set version
run: |
VERSION=${{ env.VERSION }}
- name: Create GitHub release entry
uses: softprops/action-gh-release@v2
id: create_release
with:
draft: false
prerelease: false
name: ${{ env.VERSION }}
tag_name: ${{ env.VERSION }}
env:
GITHUB_TOKEN: ${{ github.token }}