Skip to content

Commit 57c29a3

Browse files
ericdalloeca
andcommitted
Fix GitHub Pages deployment: trigger workflow on master branch
The repo uses master as default branch but the workflow only triggered on main. Also gitignore Astro generated files. πŸ€– Generated with [eca](https://eca.dev) Co-Authored-By: eca <noreply@eca.dev>
1 parent 44d5fd9 commit 57c29a3

File tree

7 files changed

+4
-205
lines changed

7 files changed

+4
-205
lines changed

β€Ž.github/workflows/deploy.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy to GitHub Pages
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [main, master]
66
workflow_dispatch:
77

88
permissions:

β€Ž.gitignoreβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ node_modules/
55
website/dist/
66
dist/
77

8+
# Astro generated
9+
website/.astro/
10+
811
# Environment
912
.env
1013
.env.*

β€Žwebsite/.astro/content-assets.mjsβ€Ž

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

β€Žwebsite/.astro/content-modules.mjsβ€Ž

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

β€Žwebsite/.astro/content.d.tsβ€Ž

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

β€Žwebsite/.astro/data-store.jsonβ€Ž

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

β€Žwebsite/.astro/types.d.tsβ€Ž

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

0 commit comments

Comments
Β (0)