8b6e5c19b8
* init static site * add index * changes footer * remove search * add docs workflows * remove unused pages * remove commit step * README and CHANGELOG added, also fix cron typo * Sorry ayrat my bad xd * little glitch * fix base url * dates modify * fix authors * change structure * don't remove docs :] * remove rust code for static site * copy recursively * add random attribute * remove submodules * more fixes * master branch * CHANGELOG AND README update automated * fix ref * Icons may be work ? * fix deploy bug * i think fix the deploy bug * gitignore README and CHANGELOG * delete -f * delete desc * delete lead Co-authored-by: Ayrat Badykov <ayratin555@gmail.com>
23 lines
542 B
YAML
23 lines
542 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: 'master'
|
|
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"
|
|
|
|
- name: Deploy docs
|
|
run: |
|
|
source ./docs/deploy.sh && build && deploy
|