Skip to content

Commit

Permalink
Stop pushing new images to DockerHub (#35)
Browse files Browse the repository at this point in the history
We've transitioned to using GitHub Container Registry.
  • Loading branch information
SeanTAllen authored Dec 5, 2023
1 parent 70c89b3 commit 37a0dde
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/update-release-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ jobs:
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Login to DockerHub
run: docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
env:
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
- name: Login to GitHub Container Registry
# v2.2.0
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
Expand Down
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,10 @@ IMAGE := ponylang/library-documentation-action
all: build

build:
docker build --pull -t "${IMAGE}:release" .
docker build --pull -t "${IMAGE}:latest" .
docker build --pull -t "ghcr.io/${IMAGE}:release" .
docker build --pull -t "ghcr.io/${IMAGE}:latest" .

push: build
docker push "${IMAGE}:release"
docker push "${IMAGE}:latest"
docker push "ghcr.io/${IMAGE}:release"
docker push "ghcr.io/${IMAGE}:latest"

Expand Down

0 comments on commit 37a0dde

Please sign in to comment.