From e2ec608fe9805dfc84a001f06a84caef02c340a7 Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Tue, 27 Feb 2024 18:36:12 -0600 Subject: [PATCH] Add stacks table to workaround release issues (#210) --- buildpack.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/buildpack.toml b/buildpack.toml index 4873af6..4867981 100644 --- a/buildpack.toml +++ b/buildpack.toml @@ -11,6 +11,13 @@ keywords = ["procfile", "processes", "heroku"] [[buildpack.licenses]] type = "BSD-3-Clause" +# [[stacks]] is deprecated in Buildpack API 0.10, but is (unintentionally?) +# required by `pack buildpack package`. The [[stacks]] table should be +# removed when the issue (https://github.com/buildpacks/pack/issues/2047) is +# resolved. +[[stacks]] +id = "*" + [[targets]] os = "linux" arch = "amd64"