backie/.github/workflows/docs.yml
Ayrat Badykov 020ac943b5
documentation site (#81)
* init static site

* add index

* changes footer

* remove search

* add docs workflows

* remove unused pages
2022-09-06 00:06:15 +03:00

23 lines
612 B
YAML

name: docs
on:
workflow_dispatch:
jobs:
build:
name: Deploy to gh-pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: 'ayrat555/docs-site'
submodules: 'recursive'
- run: |
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
- run: |
git config --global user.email "ayratin555@gmail.com"
git config --global user.name "Ayrat Badykov"
git add . && git commit -m "Commit copied files"
- name: Deploy docs
run: |
source ./docs/deploy.sh && build && deploy