Skip to content

Commit

Permalink
Add fix for github pages to github repository module (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
IMax153 authored Jun 20, 2024
1 parent a4907ff commit 45952ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/modules/github_repository/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ locals {
pages = var.pages == null ? null : {
build_type = var.pages.build_type
source_branch = var.default_branch
source_path = "/docs"
source_path = var.pages.build_type == "legacy" ? "/docs" : "/"
}
}

Expand Down

0 comments on commit 45952ca

Please sign in to comment.