Skip to content

Commit a314433

Browse files
Revert to using case sensitive file system in Linux to build the website (#1067)
1 parent dad87c3 commit a314433

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/www.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
www:
13-
runs-on: macos-latest
13+
runs-on: ubuntu-latest
1414
timeout-minutes: 15
1515

1616
permissions:
@@ -43,14 +43,14 @@ jobs:
4343

4444
- name: Download Staticalize
4545
run: |
46-
wget https://github.com/thefrontside/staticalize/releases/download/v0.2.2/staticalize-macos.tar.gz \
47-
-O /tmp/staticalize-macos.tar.gz
48-
tar -xzf /tmp/staticalize-macos.tar.gz -C /usr/local/bin
49-
chmod +x /usr/local/bin/staticalize-macos
46+
wget https://github.com/thefrontside/staticalize/releases/download/v0.2.2/staticalize-linux.tar.gz \
47+
-O /tmp/staticalize-linux.tar.gz
48+
tar -xzf /tmp/staticalize-linux.tar.gz -C /usr/local/bin
49+
chmod +x /usr/local/bin/staticalize-linux
5050
5151
- name: Staticalize
5252
run: |
53-
staticalize-macos \
53+
staticalize-linux \
5454
--site=http://127.0.0.1:8000 \
5555
--output=www/built \
5656
--base=https://effection-www.deno.dev/

www/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"tasks": {
33
"dev": "deno run -A @effectionx/watch deno run -A main.tsx",
4-
"staticalize": "deno run -A jsr:@frontside/[email protected].1/cli --site http://localhost:8000 --output=built --base=http://localhost:8000",
4+
"staticalize": "deno run -A jsr:@frontside/[email protected].2/cli --site http://localhost:8000 --output=built --base=http://localhost:8000",
55
"pagefind": "npx pagefind --site built",
66
"test": "deno test --allow-run --allow-write --allow-read"
77
},

0 commit comments

Comments
 (0)