Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
- v*
paths-ignore:
- docs/**
- README.md
- mkdocs.yml
- requirements.txt
permissions: write-all
jobs:
build:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/mkdocs-material-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
branches:
- main
paths:
- docs/**
- mkdocs.yml
- requirements.txt
permissions:
contents: read
pages: write
Expand Down
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -419,3 +419,12 @@ FodyWeavers.xsd

.idea
/site

# macOS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
18 changes: 14 additions & 4 deletions LayeredCraft.Cdk.Constructs.sln
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "git", "git", "{32F31203-71F
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{B4C8E2F1-3A2D-4B8F-9C7E-1F5A8D9E2B3C}"
ProjectSection(SolutionItems) = preProject
docs\_config.yml = docs\_config.yml
docs\index.md = docs\index.md
docs\assets\css\style.scss = docs\assets\css\style.scss
docs\_layouts\default.html = docs\_layouts\default.html
docs\_includes\navigation.html = docs\_includes\navigation.html
mkdocs.yml = mkdocs.yml
requirements.txt = requirements.txt
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "constructs", "constructs", "{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}"
Expand All @@ -54,6 +52,16 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LayeredCraft.Cdk.Constructs
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LayeredCraft.Cdk.Constructs.Tests", "test\LayeredCraft.Cdk.Constructs.Tests\LayeredCraft.Cdk.Constructs.Tests.csproj", "{7F2D2EA4-D201-4B0E-AE44-6D03B1B7AEBC}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "assets", "assets", "{F7371C5C-5282-4C14-8465-35FABAE8293C}"
ProjectSection(SolutionItems) = preProject
docs\assets\icon.png = docs\assets\icon.png
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "css", "css", "{D7118124-AA5A-45AB-9075-E0F56BAB4F62}"
ProjectSection(SolutionItems) = preProject
docs\assets\css\style.scss = docs\assets\css\style.scss
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -68,6 +76,8 @@ Global
{A1B2C3D4-E5F6-7890-ABCD-EF1234567890} = {B4C8E2F1-3A2D-4B8F-9C7E-1F5A8D9E2B3C}
{F9E8D7C6-B5A4-9382-7160-5E4D3C2B1A09} = {B4C8E2F1-3A2D-4B8F-9C7E-1F5A8D9E2B3C}
{9F8E7D6C-5B4A-3928-1607-E5D4C3B2A190} = {B4C8E2F1-3A2D-4B8F-9C7E-1F5A8D9E2B3C}
{F7371C5C-5282-4C14-8465-35FABAE8293C} = {B4C8E2F1-3A2D-4B8F-9C7E-1F5A8D9E2B3C}
{D7118124-AA5A-45AB-9075-E0F56BAB4F62} = {F7371C5C-5282-4C14-8465-35FABAE8293C}
Comment thread
ncipollina marked this conversation as resolved.
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{63FCBE95-6714-49D5-A9CD-0BE725BAE259}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Expand Down