Skip to content

Commit

Permalink
Fix buildpack target architecture config (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
mars authored Oct 24, 2024
1 parent 68dd64c commit c3f78c0
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export CR_PAT=XXXXX
echo $CR_PAT | docker login ghcr.io -u mars --password-stdin

# push the specific version
docker tag frontend-web-builder ghcr.io/heroku/builder-test-public:frontend-web-builder-1.0.0_linux-arm64
docker push ghcr.io/heroku/builder-test-public:frontend-web-builder-1.0.0_linux-arm64
docker tag frontend-web-builder ghcr.io/heroku/builder-test-public:frontend-web-builder-1.0.1_linux-arm64
docker push ghcr.io/heroku/builder-test-public:frontend-web-builder-1.0.1_linux-arm64

# also push as "latest"
docker tag frontend-web-builder ghcr.io/heroku/builder-test-public:frontend-web-builder-latest_linux-arm64
Expand Down
4 changes: 2 additions & 2 deletions builder/builder.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ mirrors = ["public.ecr.aws/heroku/heroku:24"]
[[order]]
[[order.group]]
id = "heroku/website-nodejs"
version = "1.0.0"
version = "1.0.1"

[[order]]
[[order.group]]
id = "heroku/website"
version = "1.0.0"
version = "1.0.1"
6 changes: 3 additions & 3 deletions buildpacks/static-web-server/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ api = "0.10"

[buildpack]
id = "heroku/static-web-server"
version = "1.0.0"
version = "1.0.1"
name = "Heroku Static Web Server"
description = "A component buildpack used by Heroku's front-end web buildpacks, such as 'heroku/website' and 'heroku/website-nodejs'."

[[buildpack.licenses]]
type = "MIT"

[[metadata.targets]]
[[targets]]
os = "linux"
arch = "amd64"

[[metadata.targets]]
[[targets]]
os = "linux"
arch = "arm64"

Expand Down
6 changes: 3 additions & 3 deletions buildpacks/website-ember/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ api = "0.10"

[buildpack]
id = "heroku/website-ember"
version = "1.0.0"
version = "1.0.1"
name = "Heroku Website (Ember.js)"
description = "A component of the 'heroku/website-nodejs' buildpack."

[[buildpack.licenses]]
type = "MIT"

[[metadata.targets]]
[[targets]]
os = "linux"
arch = "amd64"

[[metadata.targets]]
[[targets]]
os = "linux"
arch = "arm64"

Expand Down
6 changes: 3 additions & 3 deletions buildpacks/website-public-html/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ api = "0.10"

[buildpack]
id = "heroku/website-public-html"
version = "1.0.0"
version = "1.0.1"
name = "Heroku Website (Public HTML)"
description = "A component of the 'heroku/website' buildpack."

[[buildpack.licenses]]
type = "MIT"

[[metadata.targets]]
[[targets]]
os = "linux"
arch = "amd64"

[[metadata.targets]]
[[targets]]
os = "linux"
arch = "arm64"

Expand Down
8 changes: 4 additions & 4 deletions meta-buildpacks/website-nodejs/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/website-nodejs"
version = "1.0.0"
version = "1.0.1"
name = "Heroku Website/Node.js"
description = "Heroku's buildpack for static web apps that require Node.js for build."
keywords = ["ember", "emberjs", "heroku"]
Expand All @@ -14,19 +14,19 @@ type = "MIT"

[[order.group]]
id = "heroku/release-phase"
version = "1.0.0"
version = "1.0.1"

[[order.group]]
id = "heroku/nodejs"
version = "3.2.16"

[[order.group]]
id = "heroku/static-web-server"
version = "1.0.0"
version = "1.0.1"

[[order.group]]
id = "heroku/website-ember"
version = "1.0.0"
version = "1.0.1"

[[metadata.targets]]
os = "linux"
Expand Down
8 changes: 4 additions & 4 deletions meta-buildpacks/website/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.10"

[buildpack]
id = "heroku/website"
version = "1.0.0"
version = "1.0.1"
name = "Heroku Website"
description = "Heroku's buildpack for static websites."
keywords = ["website", "html", "javascript", "css", "static", "heroku"]
Expand All @@ -14,15 +14,15 @@ type = "MIT"

[[order.group]]
id = "heroku/release-phase"
version = "1.0.0"
version = "1.0.1"

[[order.group]]
id = "heroku/static-web-server"
version = "1.0.0"
version = "1.0.1"

[[order.group]]
id = "heroku/website-public-html"
version = "1.0.0"
version = "1.0.1"

[[metadata.targets]]
os = "linux"
Expand Down

0 comments on commit c3f78c0

Please sign in to comment.