Skip to content

Commit

Permalink
Migrate to DockerHub (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
Malax authored May 10, 2023
1 parent 617f68d commit 593eaf2
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
- name: Install yj
uses: buildpacks/github-actions/[email protected]
- id: login
name: "Login to public ECR"
name: "Login to Docker Hub"
uses: docker/login-action@v2
with:
registry: public.ecr.aws
username: ${{ secrets.AWS_ACCESS_KEY_ID }}
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
registry: docker.io
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
env:
AWS_REGION: us-east-1
- id: install-musl-tools
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/jvm-function-invoker/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ url = "https://repo1.maven.org/maven2/com/salesforce/functions/sf-fx-runtime-jav
sha256 = "b8e17b6ee9889304cbd07958f86ac067cb58c7f6bdd324a87133d377f670adb5"
[metadata.release]
[metadata.release.docker]
repository = "public.ecr.aws/heroku-buildpacks/heroku-jvm-function-invoker-buildpack"
repository = "docker.io/heroku/buildpack-jvm-function-invoker"
2 changes: 1 addition & 1 deletion buildpacks/jvm/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ url = "https://repo1.maven.org/maven2/com/heroku/agent/heroku-java-metrics-agent
sha256 = "9a718680e4a93f93a8755b20fb21cc541e5c2692acc9da27c667530f48a716db"
[metadata.release]
[metadata.release.docker]
repository = "public.ecr.aws/heroku-buildpacks/heroku-jvm-buildpack"
repository = "docker.io/heroku/buildpack-jvm"
2 changes: 1 addition & 1 deletion buildpacks/maven/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ url = "https://lang-jvm.s3.us-east-1.amazonaws.com/maven-3.3.9.tar.gz"
sha256 = "72e5a073cd1acb8925a55366a37268d28a5bdde76d4cda4888364068472aa46e"
[metadata.release]
[metadata.release.docker]
repository = "public.ecr.aws/heroku-buildpacks/heroku-maven-buildpack"
repository = "docker.io/heroku/buildpack-maven"
3 changes: 3 additions & 0 deletions buildpacks/sbt/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ id = "heroku-22"

[[stacks]]
id = "*"

[metadata.release.docker]
repository = "docker.io/heroku/buildpack-sbt"
2 changes: 1 addition & 1 deletion meta-buildpacks/java-function/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ version = "0.6.7"
[metadata]
[metadata.release]
[metadata.release.docker]
repository = "public.ecr.aws/heroku-buildpacks/heroku-java-function-buildpack"
repository = "docker.io/heroku/buildpack-java-function"
2 changes: 1 addition & 1 deletion meta-buildpacks/java/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ optional = true
[metadata]
[metadata.release]
[metadata.release.docker]
repository = "public.ecr.aws/heroku-buildpacks/heroku-java-buildpack"
repository = "docker.io/heroku/buildpack-java"
2 changes: 1 addition & 1 deletion meta-buildpacks/scala/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ optional = true
[metadata]
[metadata.release]
[metadata.release.docker]
repository = "public.ecr.aws/heroku-buildpacks/heroku-scala-buildpack"
repository = "docker.io/heroku/buildpack-scala"

0 comments on commit 593eaf2

Please sign in to comment.