Skip to content

Commit

Permalink
[Template merge] Add GH Pages publishing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
snomos committed Apr 22, 2021
1 parent 7e62a20 commit eec3311
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/docsygen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build in-code documentation
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
repository: giellalt/giella-core
path: giella-core
- uses: actions/checkout@v2
with:
repository: giellalt/giella-shared
path: giella-shared
- uses: actions/checkout@v2
with:
path: lang
- name: Install dev dependencies
uses: divvun/actions/lang/install-deps@master
with:
sudo: true
- name: Build giella-core/giella-shared
uses: divvun/actions/lang/build@master
with:
spellers: false
fst: hfst
- name: deploy gh pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: lang/docs/
enable_jekyll: true

0 comments on commit eec3311

Please sign in to comment.