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
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ jobs:
- name: Install Dependencies
run: sudo apt-get install make curl jq
- name: Install pack
uses: buildpacks/github-actions/setup-pack@v5.9.7
with:
pack-version: '0.38.2'
uses: buildpacks/github-actions/setup-pack@v5.11.0
- name: Test
run: make test
env:
Expand Down
22 changes: 21 additions & 1 deletion themes/buildpacks/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ <h2>
that can run on any cloud.
</h2>
<p class="button-holder">
<a href="/docs/" class="bg-pink button">Get Started</a>
<a href="/docs/app-journey" class="bg-pink button">Start Tutorial</a>
<a href="/docs/" class="button bg-white button-light">Read the Docs</a>
</p>
</div>
<div class="col-lg d-flex flex-column my-4" style="height: 350px;">
Expand Down Expand Up @@ -62,6 +63,25 @@ <h2>
</div>

<div id="learn-more" class="container content pt-5 pb-4">
<h2>Choose Your Path</h2>
<section class="row highlights text-center mb-5">
<div class="col-sm bg-off-blue m-2 p-4 rounded">
<h3 class="mb-2">I'm an App Developer</h3>
<p>Learn how to use buildpacks to build your apps without writing a Dockerfile.</p>
<a href="/docs/for-app-developers/" class="button bg-pink">Get Started</a>
</div>
<div class="col-sm bg-off-blue m-2 p-4 rounded">
<h3 class="mb-2">I'm a Buildpack Author</h3>
<p>Create custom buildpacks to support your language, framework, or toolchain.</p>
<a href="/docs/for-buildpack-authors/" class="button bg-pink">Get Started</a>
</div>
<div class="col-sm bg-off-blue m-2 p-4 rounded">
<h3 class="mb-2">I'm a Platform Operator</h3>
<p>Integrate buildpacks into your platform to enforce security and compliance at scale.</p>
<a href="/docs/for-platform-operators/" class="button bg-pink">Get Started</a>
</div>
</section>

<h2>Why Cloud Native Buildpacks?</h2>
<section class="row highlights text-center mb-2">
<div class="col-sm bg-light m-2 p-5 rounded">
Expand Down
Loading