Skip to content

Commit

Permalink
add jammy stack IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
Frankie Gallina-Jones committed Jun 23, 2022
1 parent 08fef6d commit ff1aa82
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ const (
// BionicStackID is the ID for the Cloud Native Buildpacks bionic stack.
BionicStackID = "io.buildpacks.stacks.bionic"

// TinyStackID is the ID for the Paketo Buildpacks tiny stack.
// BionicTinyStackID is the ID for the Paketo Buildpacks bionic tiny stack.
BionicTinyStackID = "io.paketo.stacks.tiny"

// TinyStackID is the ID for the Paketo Buildpacks bionic tiny stack.
//
// Deprecated: use BionicTinyStackID instead
TinyStackID = "io.paketo.stacks.tiny"

// JammyStackID is the ID for the Cloud Native Buildpacks jammy stack.
JammyStackID = "io.buildpacks.stacks.jammy"

// JammyTinyStackID is the ID for the Cloud Native Buildpacks jammy tiny stack.
JammyTinyStackID = "io.buildpacks.stacks.jammy.tiny"
)

0 comments on commit ff1aa82

Please sign in to comment.