Skip to content

Commit 0325611

Browse files
authored
Merge branch 'ep2025' into ep2025-schedule
2 parents fdcedcc + 4ccb104 commit 0325611

29 files changed

+187
-230
lines changed

.github/workflows/build-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: make install
3333

3434
- name: Build the website
35-
run: make build
35+
run: make build MODE=production
3636

3737
- name: Set up SSH key
3838
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)

astro.config.mjs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,8 @@ export default defineConfig({
5353
},
5454
site: process.env.SITE_URL || "https://ep2025.europython.eu",
5555
redirects: {
56-
"/c-api-summit/": "/programme/c-api-summit/",
57-
"/cfp/": "/programme/cfp/",
5856
"/planning/": "https://forms.gle/riw6CvML8ck94A4V9",
5957
"/reviewers/": "https://forms.gle/4GTJjwZ1nHBGetM18",
60-
"/rust-summit/": "/programme/rust-summit/",
61-
"/sponsor/": "/sponsorship/sponsor/",
62-
"/voting/": "/programme/voting/",
63-
"/wasm-summit/": "/programme/wasm-summit/",
64-
"/programme/sessions/": "/sessions/",
6558
},
6659
integrations: [
6760
preload(),

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.

0 commit comments

Comments
 (0)