Merge branch 'main' of https://github.com/bab2min/kiwipiepy #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate the documentation | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
- '!v*.*.*d' | |
workflow_dispatch: | |
jobs: | |
build_manylinux: | |
name: Build for manylinux | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
language: [kr] | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
- name: build | |
run: | | |
python3 -m pip install pdoc3==0.10.0 numpy transformers | |
mv Kiwi/ModelGenerator/sj.* model/kiwipiepy_model/ | |
mv Kiwi/ModelGenerator/extract.mdl model/kiwipiepy_model/ | |
mv Kiwi/ModelGenerator/*.dict model/kiwipiepy_model/ | |
mv Kiwi/ModelGenerator/combiningRule.txt model/kiwipiepy_model/ | |
mv Kiwi/ModelGenerator/skipbigram.mdl model/kiwipiepy_model/ | |
cd model | |
python3 setup.py install | |
cd .. | |
python3 setup.py install | |
- name: gen doc | |
run: | | |
export KIWIPIEPY_VER="`python3 -m pip show kiwipiepy | grep Version | cut -d' ' -f2`" | |
python3 -m pdoc --html kiwipiepy | |
sed -i -E "s/documentation<\/title>/documentation (v${KIWIPIEPY_VER})<\/title>/" html/kiwipiepy/*.html | |
sed -i -E 's/<\/title>/<\/title><link rel="icon" type="image\/png" sizes="192x192" href="\/kiwipiepy\/favicon-192x192.png">/' html/kiwipiepy/*.html | |
sed -i -E 's/(<p><img alt="" src="https:\/\/badge.fury.io\/py\/kiwipiepy.svg"><\/p>)/<script async defer src="https:\/\/buttons.github.io\/buttons.js"><\/script> <p><img alt="" src="https:\/\/badge.fury.io\/py\/kiwipiepy.svg"> <a class="github-button" href="https:\/\/github.com\/bab2min\/kiwipiepy" data-size="large" data-show-count="true" aria-label="Star bab2min\/kiwipiepy on GitHub">Star<\/a> <a class="github-button" href="https:\/\/github.com\/bab2min\/kiwipiepy\/issues" data-size="large" data-show-count="true" aria-label="Issue bab2min\/kiwipiepy on GitHub">Issue<\/a> <\/p>/' html/kiwipiepy/*.html | |
sed -i -e '/<nav id="sidebar">/r document/document_header.html' html/kiwipiepy/*.html | |
sed -i -E 's/(<\/body>)/<script async src="https:\/\/www.googletagmanager.com\/gtag\/js?id=UA-35651242-12"><\/script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag("js", new Date()); gtag("config", "UA-35651242-12"); <\/script>\n\1/' html/kiwipiepy/*.html | |
mkdir -p ../g | |
pushd ../g | |
git clone https://${{ secrets.ACCESS_TOKEN }}@github.com/bab2min/bab2min.github.io | |
mkdir -p bab2min.github.io/kiwipiepy/v${KIWIPIEPY_VER}/${{ matrix.language }} | |
popd | |
cp html/kiwipiepy/* ../g/bab2min.github.io/kiwipiepy/v${KIWIPIEPY_VER}/${{ matrix.language }} | |
pushd ../g/bab2min.github.io | |
echo "<meta http-equiv='refresh' content='0;url=/kiwipiepy/v${KIWIPIEPY_VER}/kr/' >" > kiwipiepy/index.html | |
git config user.email "[email protected]" | |
git config user.name "bab2min" | |
git add . | |
git commit -m "v${KIWIPIEPY_VER} ${{ matrix.language }}" | |
git push | |
popd | |