From 75153c2f5a35e9862ebec374ecb4d79caf15d4d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Z=C3=BClke?= Date: Wed, 5 Jun 2024 02:06:02 +0200 Subject: [PATCH] Work around Pack 'no compatible stacks among provided buildpacks' error (#114) Fixed by https://github.com/buildpacks/pack/pull/2081 and released in https://github.com/buildpacks/pack/releases/tag/v0.34.0 but not in a Buildpacks GHAs release at https://github.com/buildpacks/github-actions/releases yet --- buildpacks/php/buildpack.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/buildpacks/php/buildpack.toml b/buildpacks/php/buildpack.toml index 9ac7eec..f85e202 100644 --- a/buildpacks/php/buildpack.toml +++ b/buildpacks/php/buildpack.toml @@ -11,6 +11,14 @@ keywords = ["php", "heroku"] [[buildpack.licenses]] type = "BSD-3-Clause" +# Temporary workaround until Buildpacks GHAs get a release +# which includes Pack 0.34.0 or later: +# https://github.com/buildpacks/github-actions/releases +# https://github.com/buildpacks/pack/releases/tag/v0.34.0 +# https://github.com/buildpacks/pack/pull/2081 +[[stacks]] +id = "*" + [[targets]] os = "linux" arch = "amd64"