33 lines
794 B
YAML
33 lines
794 B
YAML
|
name: Documentation
|
||
|
|
||
|
on: push
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: x86_64-unknown-linux-gnu
|
||
|
runs-on: ubuntu-latest
|
||
|
if: github.ref != 'refs/heads/main'
|
||
|
steps:
|
||
|
- name: 'checkout'
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: 'build'
|
||
|
uses: shalzz/zola-deploy-action@v0.13.0
|
||
|
env:
|
||
|
PAGES_BRANCH: gh-pages
|
||
|
BUILD_DIR: .
|
||
|
TOKEN: ${{ secrets.TOKEN }}
|
||
|
build_and_deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: github.ref == 'refs/heads/main'
|
||
|
steps:
|
||
|
- name: 'checkout'
|
||
|
uses: actions/checkout@v2
|
||
|
- name: 'build and deploy'
|
||
|
uses: shalzz/zola-deploy-action@v0.13.0
|
||
|
env:
|
||
|
PAGES_BRANCH: master
|
||
|
BUILD_DIR: .
|
||
|
TOKEN: ${{ secrets.PUBLIC_TOKEN }}
|
||
|
REPOSITORY: dat-adi/dat-adi.github.io
|