Skip to content

Commit

Permalink
fix: attempt to fix pages configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Gleich <git@mattglei.ch>
  • Loading branch information
gleich committed Dec 16, 2024
1 parent b8e0c82 commit d3e072b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions modules/github/repos.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1014,6 +1014,10 @@ resource "github_repository" "beta_website" {
homepage_url = "https://old.mattglei.ch/"
pages {
build_type = "legacy"
source {
branch = "master"
path = "/"
}
}
}

Expand Down Expand Up @@ -1126,6 +1130,10 @@ resource "github_repository" "Web_Lights_Front" {
homepage_url = "https://web-lights.xyz"
pages {
build_type = "legacy"
source {
branch = "master"
path = "/"
}
}
}

Expand Down Expand Up @@ -1215,6 +1223,10 @@ resource "github_repository" "Old_Personal_Site" {
homepage_url = "https://matt-gleich.github.io/"
pages {
build_type = "legacy"
source {
branch = "master"
path = "/"
}
}
}

Expand Down

0 comments on commit d3e072b

Please sign in to comment.