Refactored docson to be used as git submodule (akin to what we alread… #11
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: CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7' | |
bundler-cache: true | |
- name: Install GraphViz | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends -y graphviz | |
- name: Build | |
run: make | |
- name: Deploy | |
env: | |
BOT_SSH_KEY: ${{secrets.BOT_SSH_KEY}} | |
run: | | |
.github/push_artifacts/git_config_kaitai_bot | |
.github/push_artifacts/publish \ | |
-o kaitai-io \ | |
-r doc-kaitai-io.github.io \ | |
-m "Regen ${GITHUB_REF#refs/heads/*} $GITHUB_REPOSITORY@$GITHUB_SHA" -- \ | |
--exclude=.git \ | |
--exclude=CNAME \ | |
--exclude=favicon.ico \ | |
--exclude=favicon.ico.license \ | |
out/ | |
# NB: ^ trailing slash in 'out/' is *very* important for rsync! | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' |