Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
Adds ruby buildpack (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
ForestEckhardt authored Oct 29, 2020
1 parent 82b4a01 commit 856d90c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
pack build testapp -p samples/nodejs/yarn --builder builder
pack build testapp -p samples/go/mod --builder builder
pack build testapp -p samples/java/maven --builder builder
pack build testapp -p samples/ruby/puma --builder builder
- name: Generate Release Notes
id: notes
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
pack build testapp -p samples/nodejs/yarn --builder testbuilder
pack build testapp -p samples/go/mod --builder testbuilder
pack build testapp -p samples/java/maven --builder testbuilder
pack build testapp -p samples/ruby/puma --builder testbuilder
approve:
name: Auto Approve
Expand Down
10 changes: 10 additions & 0 deletions builder.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ description = "Ubuntu bionic base image with buildpacks for Java, .NET, NodeJS,
image = "gcr.io/paketo-buildpacks/procfile:2.0.3"
version = "2.0.3"

[[buildpacks]]
image = "gcr.io/paketo-buildpacks/ruby:0.1.2"
version = "0.1.2"

[lifecycle]
version = "0.9.2"

Expand Down Expand Up @@ -87,6 +91,12 @@ description = "Ubuntu bionic base image with buildpacks for Java, .NET, NodeJS,
id = "paketo-buildpacks/nginx"
version = "0.0.193"

[[order]]

[[order.group]]
id = "paketo-buildpacks/ruby"
version = "0.1.2"

[[order]]

[[order.group]]
Expand Down

0 comments on commit 856d90c

Please sign in to comment.