We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a71ecf9 commit 216ffb5Copy full SHA for 216ffb5
content/docs/buildpack-author-guide/publishing-with-github-actions.md
@@ -52,9 +52,9 @@ jobs:
52
PACKAGE="${REPO}/$(echo "$BP_ID" | sed 's/\//_/g')"
53
pack buildpack package --publish ${PACKAGE}:${VERSION}
54
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}"
+ echo "bp_id=$BP_ID" >> "$GITHUB_OUTPUT"
+ echo "version=$VERSION" >> "$GITHUB_OUTPUT"
+ echo "address=${PACKAGE}@${DIGEST}" >> "$GITHUB_OUTPUT"
58
shell: bash
59
env:
60
REPO: docker.io/${{ secrets.DOCKER_HUB_USER }}
0 commit comments