mirror of
https://github.com/avitex/avitex.github.io
synced 2024-10-31 18:29:57 +00:00
18 lines
358 B
YAML
18 lines
358 B
YAML
name: build
|
|
on:
|
|
push:
|
|
branches:
|
|
- source
|
|
jobs:
|
|
build_and_deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Build and deploy
|
|
uses: shalzz/zola-deploy-action@v0.12.0
|
|
env:
|
|
PAGES_BRANCH: master
|
|
BUILD_DIR: .
|
|
TOKEN: ${{ secrets.TOKEN }}
|