Push images to ghcr.io

Alternative container registries like ghcr.io are a good option for anyone
seeking to avoid things like docker hub's latest changes to rate limiting
main
Ben Busby 2022-02-01 18:02:59 -07:00 committed by GitHub
parent e3394e29dd
commit 63301efb28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 4 deletions

View File

@ -24,10 +24,17 @@ jobs:
uses: crazy-max/ghaction-docker-buildx@v1 uses: crazy-max/ghaction-docker-buildx@v1
with: with:
version: latest version: latest
- name: log in to docker hub - name: Login to Docker Hub
run: | uses: docker/login-action@v1
echo "${{ secrets.DOCKER_PASSWORD }}" | \ with:
docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to ghcr.io
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build and push the image - name: build and push the image
if: startsWith(github.ref, 'refs/heads/main') && github.actor == 'benbusby' if: startsWith(github.ref, 'refs/heads/main') && github.actor == 'benbusby'
run: | run: |
@ -36,6 +43,9 @@ jobs:
docker buildx build --push \ docker buildx build --push \
--tag benbusby/whoogle-search:latest \ --tag benbusby/whoogle-search:latest \
--platform linux/amd64,linux/arm/v7,linux/arm64 . --platform linux/amd64,linux/arm/v7,linux/arm64 .
docker buildx build --push \
--tag ghcr.io/benbusby/whoogle-search:latest \
--platform linux/amd64,linux/arm/v7,linux/arm64 .
- name: build and push tag - name: build and push tag
if: startsWith(github.ref, 'refs/tags') if: startsWith(github.ref, 'refs/tags')
run: | run: |
@ -44,3 +54,6 @@ jobs:
docker buildx build --push \ docker buildx build --push \
--tag benbusby/whoogle-search:${GITHUB_REF#refs/*/v}\ --tag benbusby/whoogle-search:${GITHUB_REF#refs/*/v}\
--platform linux/amd64,linux/arm/v7,linux/arm64 . --platform linux/amd64,linux/arm/v7,linux/arm64 .
docker buildx build --push \
--tag ghcr.io/benbusby/whoogle-search:${GITHUB_REF#refs/*/v}\
--platform linux/amd64,linux/arm/v7,linux/arm64 .