Skip to content

Merge pull request #58 from FinMind/feature/InstitutionalInvestorsAft… #136

Merge pull request #58 from FinMind/feature/InstitutionalInvestorsAft…

Merge pull request #58 from FinMind/feature/InstitutionalInvestorsAft… #136

Workflow file for this run

name: Upload FinMind Python Package Doc
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ "3.10" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make install-python-evn
- name: Generate releaese note
run: |
pipenv run python gen_release_note.py
- name: Build and publish
env:
FINMIND_DOC_TOKEN: ${{ secrets.FINMIND_DOC_TOKEN }}
run: |
pipenv run mkdocs build
make deploy-github-page