forked from docs/doc-exports
adding convertor
This commit is contained in:
@ -22,3 +22,26 @@ jobs:
|
||||
|
||||
- name: Verify Installation
|
||||
run: pandoc --version
|
||||
|
||||
install-convertor:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10' # adjust version as needed
|
||||
|
||||
- name: Clone doc-convertor from Gitea
|
||||
run: |
|
||||
git clone https://gitea.eco.tsi-dev.otc-service.com/docs/doc-convertor.git
|
||||
|
||||
- name: Create virtualenv and install package in editable mode
|
||||
run: |
|
||||
python -m venv ~/.venv
|
||||
source ~/.venv/bin/activate
|
||||
pip install --upgrade pip
|
||||
pip install -e docs/doc-convertor
|
||||
pip install -e ./doc-convertor
|
||||
|
||||
Reference in New Issue
Block a user