Skip to content

Commit 15b393c

Browse files
authored
Merge branch 'main' into fix-inline-buildpacks-spelling
2 parents 27301cd + 0f91f06 commit 15b393c

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ endif
4343
endif
4444

4545
ifeq ($(shell uname -s),Darwin)
46-
HUGO_OS:=macOS
46+
HUGO_OS:=darwin
4747
HUGO_ARCH:=universal
4848
endif
4949

@@ -188,4 +188,4 @@ katacoda:
188188
check-katacoda: katacoda
189189
@echo "Checking if Katacoda docs are up-to-date..."
190190
@git diff --quiet HEAD -- katacoda/scenarios || ( echo "Katacoda docs are not up-to-date! Please run 'make katacoda' and commit the katacoda/scenarios folder" && exit 1)
191-
@echo "All katacoda docs are up-to-date"
191+
@echo "All katacoda docs are up-to-date"

content/docs/buildpack-author-guide/create-buildpack/setup-local-environment.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ Then, create a file called `ruby-sample-app/Gemfile`<!--+"{{open}}"+--> with the
4646

4747
<!-- test:file=ruby-sample-app/Gemfile -->
4848
```ruby
49-
source "https://rubygems.org"
49+
source 'https://rubygems.org'
5050

5151
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
5252

53-
gem "sinatra"
53+
gem 'sinatra'
54+
gem 'webrick'
5455
```
5556

5657
Finally, make sure your local Docker daemon is running by executing:

content/docs/buildpack-author-guide/publishing-with-github-actions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
PACKAGE="${REPO}/$(echo "$BP_ID" | sed 's/\//_/g')"
5353
pack buildpack package --publish ${PACKAGE}:${VERSION}
5454
DIGEST="$(crane digest ${PACKAGE}:${VERSION})"
55-
echo "::set-output name=bp_id::$BP_ID"
56-
echo "::set-output name=version::$VERSION"
57-
echo "::set-output name=address::${PACKAGE}@${DIGEST}"
55+
echo "bp_id=$BP_ID" >> "$GITHUB_OUTPUT"
56+
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
57+
echo "address=${PACKAGE}@${DIGEST}" >> "$GITHUB_OUTPUT"
5858
shell: bash
5959
env:
6060
REPO: docker.io/${{ secrets.DOCKER_HUB_USER }}

0 commit comments

Comments
 (0)