mirror of https://gitlab.com/octtspacc/OcttKB
31 lines
597 B
YAML
31 lines
597 B
YAML
name: OcttKB
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
page_build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Build
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install -y git wget npm python3 python3-pip
|
|
sudo npm install -g tiddlywiki
|
|
sudo pip3 install beautifulsoup4 html5lib
|
|
bash ./Bootstrap.sh
|
|
bash ./Deploy.Main.sh
|
|
|
|
- name: Deploy
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
with:
|
|
folder: public
|