Skip to content

Commit

Permalink
Add buildpack.toml
Browse files Browse the repository at this point in the history
With a `[publish.Ignore]` table, to exclude unnecessary files from the
buildpack archive published to the buildpack registry.
  • Loading branch information
edmorley committed Jun 24, 2024
1 parent dc1102c commit 6e7c1d1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- The cache is now correctly invalidated if the stack version of an existing cache cannot be determined. ([#133](https://github.com/heroku/heroku-buildpack-apt/pull/133))
- When the cache is invalidated, all APT-related files are now removed, rather than only some of them. In particular, this means old APT package index files are cleaned up. ([#133](https://github.com/heroku/heroku-buildpack-apt/pull/133))
- Exclude test/development files from the buildpack archive published to the buildpack registry. ([#135](https://github.com/heroku/heroku-buildpack-apt/pull/135))

## 2024-03-28

Expand Down
10 changes: 10 additions & 0 deletions buildpack.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[buildpack]
name = "Apt"

[publish.Ignore]
files = [
".github/",
"test/",
".gitignore",
"Makefile",
]

0 comments on commit 6e7c1d1

Please sign in to comment.