Fix build scripts

This commit is contained in:
octospacc 2022-09-20 18:01:57 +02:00
parent 820a4acc63
commit a61464b21b
4 changed files with 38 additions and 4 deletions

28
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Build and Deploy with TiddlyWiki
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 npm
sudo npm install -g tiddlywiki
./Build.sh
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: public

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
public/Static.html
public/Style.css

View File

@ -8,10 +8,7 @@ before_script: |
pages:
stage: deploy
script: |
#./Build.sh
cd ./public
tiddlywiki ./index.html --rendertiddler $:/core/templates/alltiddlers.template.html Static.html text/plain
mv ./output/* ./
./Build.sh
artifacts:
paths:
- public

7
Build.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
cd ./public
tiddlywiki \
--load index.html \
--output ./ \
--rendertiddler $:/core/templates/static.template.css Style.css text/plain \
--rendertiddler $:/core/templates/alltiddlers.template.html Static.html text/plain