Skip to content

Commit dd8fe97

Browse files
authored
Merge branch 'main' into extensions-phase-2-rc2
2 parents e62546e + 87ecb11 commit dd8fe97

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

config.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,21 @@ featureKatacoda = false
8181
url = "https://github.com/buildpacks"
8282
weight = 4
8383

84+
[[menu.docs]]
85+
name = "Application Developer Guide"
86+
url = "/docs/app-developer-guide"
87+
weight = 1
88+
89+
[[menu.docs]]
90+
name = "Buildpack Author Guide"
91+
url = "/docs/buildpack-author-guide"
92+
weight = 2
93+
94+
[[menu.docs]]
95+
name = "Platform Operator Guide"
96+
url = "/docs/operator-guide/"
97+
weight = 3
98+
8499
[security]
85100
enableInlineShortcodes = false
86101
[security.exec]

content/docs/buildpack-author-guide/build-phases-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Now that we understand the example application we can step through each of the B
7878

7979
## Phases
8080

81-
There are five phases to a buildpacks build. These logic for each phaze is provided by a binary within [`lifecycle`](https://github.com/buildpacks/lifecycle) and the orchestration of running each of the binaries is the responsibility of the Buildpacks platform. In this case we are using `pack` as our Buildpacks platform.
81+
There are five phases to a buildpacks build. These logic for each phase is provided by a binary within [`lifecycle`](https://github.com/buildpacks/lifecycle) and the orchestration of running each of the binaries is the responsibility of the Buildpacks platform. In this case we are using `pack` as our Buildpacks platform.
8282

8383
At a high-level each layer:
8484

@@ -92,7 +92,7 @@ We consider each of the buildpacks phases in the context of our invocation of `p
9292

9393
### Phase 1: Analyze
9494

95-
The analyze phase checks a registry for previous images called `example`. It resolves the image metadata making it available to the subsequent restore phaze. In addition, analyze verifies that we have write access to the registry to create or update the image called `example`.
95+
The analyze phase checks a registry for previous images called `example`. It resolves the image metadata making it available to the subsequent restore phase. In addition, analyze verifies that we have write access to the registry to create or update the image called `example`.
9696

9797
In our case `pack` tells us that there is no previous `example` image. It provides the output.
9898

themes/buildpacks/layouts/partials/header.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,14 @@
3030
<a class="github-button icon-button bg-blue button d-none d-lg-flex" href="https://github.com/buildpacks">GitHub</a>
3131
</div>
3232
</nav>
33+
34+
<nav id="subnav" class="navbar navbar-expand-sm" role="navigation">
35+
<ul class="nav navbar-nav">
36+
{{ range $.Site.Menus.docs }}
37+
<li class="nav-link text-center">
38+
<a class="nav-link py-2 py-lg-0 px-1" href="{{.URL}}">{{.Name}}</a>
39+
</li>
40+
{{ end }}
41+
</ul>
42+
</nav>
3343
</header>

themes/buildpacks/layouts/partials/sidebar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
{{- if ne $numberOfPages 0 }}
5353
{{- $depth = add (int $depth) 1 }}
5454
<ul class="ml-2">
55-
{{- $expand = (or .Params.expand $isCurrent) -}}
55+
{{- $expand = (or $isCurrent) -}}
5656
{{- $pages := (.Pages | union .Sections) }}
5757
{{- range $pages.ByWeight }}
5858
{{- if (not .Params.hidden) }}

0 commit comments

Comments
 (0)