Skip to content

Commit 2843b69

Browse files
committed
Change push to use Docker Hub.
1 parent bd6cd02 commit 2843b69

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/buildpack-deps.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
buildpack-deps:
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17-
DOCKER_REPOSITORY: docker.pkg.github.com/${{ github.repository }}
17+
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
18+
DOCKER_REPOSITORY: aarlt/solidity-buildpack-deps
1819
IMAGE_NAME: buildpack-deps
1920

2021
runs-on: ubuntu-latest
@@ -31,9 +32,9 @@ jobs:
3132

3233
- name: Upgrade ${{ env.IMAGE_NAME }}-${{ matrix.image_variant }}
3334
run: |
34-
echo "${GITHUB_TOKEN}" | docker login docker.pkg.github.com -u "${GITHUB_ACTOR}" --password-stdin
35+
echo ${DOCKERHUB_TOKEN} | docker login -u ${GITHUB_ACTOR} --password-stdin
3536
scripts/ci/docker_upgrade.sh ${{ env.IMAGE_NAME }} ${{ matrix.image_variant }} ${{ env.DOCKER_REPOSITORY }}
36-
docker logout docker.pkg.github.com
37+
docker logout
3738
3839
- name: comment PR
3940
if: "env.DOCKER_IMAGE"

0 commit comments

Comments
 (0)