OcttKB Cross-Repo Sync (HTML to Raw) #185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |