Add import new database container #41
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: Deploy Docs | |
on: | |
push: | |
branches: | |
- stable | |
- master | |
jobs: | |
doc: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install mdbook | |
run: | | |
mkdir mdbook | |
curl -Lf https://github.com/rust-lang/mdBook/releases/download/v0.4.6/mdbook-v0.4.6-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook | |
echo "`pwd`/mdbook" >> $GITHUB_PATH | |
- name: Build book | |
run: | | |
git checkout master | |
cd doc | |
mdbook build | |
mv book ${{ runner.temp }}/book | |
- name: Deploy to GitHub | |
run: | | |
cd ${{ runner.temp }}/book | |
git init | |
git config user.name "Deploy from CI" | |
git config user.email "" | |
git add . .nojekyll | |
git commit -m "Deploy $GITHUB_REF $GITHUB_SHA to gh-pages" | |
git remote add origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
git push --force --set-upstream origin master:gh-pages |