Skip to content

Commit d9cc79d

Browse files
Merge branch 'ep2025' into ep2025-overview
2 parents 957d9ec + ef966fd commit d9cc79d

File tree

20 files changed

+150
-197
lines changed

20 files changed

+150
-197
lines changed

.github/workflows/build-deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
push:
66
branches:
77
- ep2025
8+
schedule:
9+
- cron: "0 * * * *"
810

911
jobs:
1012
deploy:
@@ -32,7 +34,7 @@ jobs:
3234
run: make install
3335

3436
- name: Build the website
35-
run: make build
37+
run: make build MODE=production
3638

3739
- name: Set up SSH key
3840
uses: webfactory/[email protected]

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Build the website
4141
run:
42-
make build PREVIEW=true
42+
make build MODE=preview
4343
SITE_URL="https://${BRANCH_NAME}.ep-preview.click"
4444

4545
- name: Set up SSH key

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ build:
2020
commands:
2121
- npm install -g pnpm@latest-10
2222
- make install
23-
- make build PREVIEW=true SITE_URL=$READTHEDOCS_CANONICAL_URL
23+
- make build MODE=preview SITE_URL=$READTHEDOCS_CANONICAL_URL
2424
- mkdir -p $READTHEDOCS_OUTPUT/html
2525
- cd dist && cp -r * $READTHEDOCS_OUTPUT/html

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ check:
4343
pnpm run astro check
4444

4545
build:
46-
pnpm build
46+
pnpm run astro build --mode $(MODE)
4747

4848
preview: RELEASES_DIR = $(VPS_PREVIEW_PATH)/$(SAFE_BRANCH)/releases
4949
preview: TARGET = $(RELEASES_DIR)/$(TIMESTAMP)

public/icons/bluesky.svg

Lines changed: 0 additions & 4 deletions
This file was deleted.

public/icons/instagram.svg

Lines changed: 0 additions & 7 deletions
This file was deleted.

public/icons/linkedin.svg

Lines changed: 0 additions & 16 deletions
This file was deleted.

public/icons/mastodon.svg

Lines changed: 0 additions & 2 deletions
This file was deleted.

public/icons/x.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/icons/youtube.svg

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)