Skip to content

Commit 9a36d11

Browse files
authored
Merge branch 'main' into dependabot/github_actions/buildpacks/github-actions-5.5.3
2 parents 066a7a8 + aad817e commit 9a36d11

File tree

177 files changed

+1759
-1320
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+1759
-1320
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $RECYCLE.BIN/
1717
*.iml
1818

1919
# Generated files
20-
content/docs/tools/pack/cli/pack*
20+
content/docs/for-platform-operators/how-to/integrate-ci/pack/cli/pack*
2121

2222
# Hugo
2323
.hugo_build.lock

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ install-ugo:
108108
.PHONY: pack-docs-update
109109
pack-docs-update: upgrade-pack
110110
@echo "> Updating Pack CLI Documentation"
111-
@echo "> SHA of contents (before update):" `find ./content/docs/tools/pack -type f -print0 | xargs -0 sha1sum | sha1sum | cut -d' ' -f1`
111+
@echo "> SHA of contents (before update):" `find ./content/docs/for-platform-operators/how-to/integrate-ci/pack -type f -print0 | xargs -0 sha1sum | sha1sum | cut -d' ' -f1`
112112
cd tools; go run -mod=mod get_pack_commands.go
113-
@echo "> SHA of contents (after update):" `find ./content/docs/tools/pack -type f -print0 | xargs -0 sha1sum | sha1sum | cut -d' ' -f1`
113+
@echo "> SHA of contents (after update):" `find ./content/docs/for-platform-operators/how-to/integrate-ci/pack -type f -print0 | xargs -0 sha1sum | sha1sum | cut -d' ' -f1`
114114

115115
.PHONY: pack-version
116116
pack-version: export PACK_VERSION:=$(PACK_VERSION)

content/community.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you didn't find anything you'd like to improve while going through the tutori
3535
[talks]: /docs/#talks
3636
[tutorials]: /docs/#tutorials
3737
[spec]: /docs/reference/spec/
38-
[platforms]: /docs/concepts/components/platform/
38+
[platforms]: /docs/for-app-developers/concepts/platform/
3939
[pack]: https://github.com/buildpacks/pack
4040
[lifecycle]: https://github.com/buildpacks/lifecycle
4141
[docs]: https://github.com/buildpacks/docs

content/docs/_index.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,23 @@ summary="Get started with Cloud Native Buildpacks."
1313
## Tutorials
1414

1515
* [An App’s Brief Journey from Source to Image](/docs/app-journey/) - An easy-to-follow introduction to Cloud Native Buildpacks using `pack`, a command line tool for Cloud Native Buildpacks.
16-
* [Creating a Cloud Native Buildpack](/docs/buildpack-author-guide/create-buildpack) - Tutorial walking through the creation of a simple Ruby buildpack.
16+
* [Creating a Cloud Native Buildpack](/docs/for-buildpack-authors/tutorials/basic-buildpack) - Tutorial walking through the creation of a simple Ruby buildpack.
1717

18-
## [Concepts](/docs/concepts)
18+
## Going deeper
1919

20-
Learn the [concepts](/docs/concepts) of Cloud Native Buildpacks.
20+
See how-to guides, concepts, and tutorials tailored to specific personas:
2121

22-
## Guides
22+
* [App Developers](/docs/for-app-developers/)
23+
* [Buildpack Authors](/docs/for-buildpack-authors/)
24+
* [Operators](/docs/for-platform-operators/)
2325

24-
Set of guides tailored to specific personas:
26+
## [Tools](/docs/for-platform-operators/)
2527

26-
* [App Developers](/docs/app-developer-guide/)
27-
* [Buildpack Authors](/docs/buildpack-author-guide/)
28-
* [Operators](/docs/operator-guide/)
29-
30-
## [Tools](/docs/tools/)
31-
32-
* **[CircleCI](/docs/tools/circleci)** - {{< summary "/docs/tools/circleci" >}}
33-
* **[GitLab](/docs/tools/gitlab)** - {{< summary "/docs/tools/gitlab" >}}
34-
* **[kpack](/docs/tools/kpack)** - {{< summary "/docs/tools/kpack" >}}
35-
* **[Pack](/docs/tools/pack)** - {{< summary "/docs/tools/pack" >}}
36-
* **[Tekton](/docs/tools/tekton)** - {{< summary "/docs/tools/tekton" >}}
28+
* **[CircleCI](/docs/for-platform-operators/how-to/integrate-ci/circleci)** - {{< summary "/docs/for-platform-operators/how-to/integrate-ci/circleci" >}}
29+
* **[GitLab](/docs/for-platform-operators/how-to/integrate-ci/gitlab)** - {{< summary "/docs/for-platform-operators/how-to/integrate-ci/gitlab" >}}
30+
* **[kpack](/docs/for-platform-operators/how-to/integrate-ci/kpack)** - {{< summary "/docs/for-platform-operators/how-to/integrate-ci/kpack" >}}
31+
* **[Pack](/docs/for-platform-operators/how-to/integrate-ci/pack)** - {{< summary "/docs/for-platform-operators/how-to/integrate-ci/pack" >}}
32+
* **[Tekton](/docs/for-platform-operators/how-to/integrate-ci/tekton)** - {{< summary "/docs/for-platform-operators/how-to/integrate-ci/tekton" >}}
3733

3834
## [Reference](/docs/reference/)
3935

content/docs/app-developer-guide/_index.md

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

content/docs/app-journey.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ deploying your new image to your favorite cloud!
9999

100100
Windows image builds are now supported!
101101

102-
<a href="/docs/app-developer-guide/build-a-windows-app" class="button bg-blue">Windows build guide</a>
102+
<a href="/docs/for-app-developers/how-to/special-cases/build-for-windows" class="button bg-blue">Windows build guide</a>
103103

104-
[builder]: /docs/concepts/components/builder/
105-
[buildpack]: /docs/concepts/components/buildpack/
104+
[builder]: /docs/for-platform-operators/concepts/builder/
105+
[buildpack]: /docs/for-platform-operators/concepts/buildpack/
106106
[samples-java-maven]: https://github.com/buildpacks/samples/tree/main/apps/java-maven
107107
[pack-docs]: /docs/tools/pack/

content/docs/buildpack-author-guide/_index.md

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

content/docs/buildpack-author-guide/create-buildpack/_index.md

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

content/docs/buildpack-author-guide/create-buildpack/adding-bill-of-materials.md

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

0 commit comments

Comments
 (0)