Upgrade to docker/login-action@v3 and temporarily disable arm64 builds

This commit is contained in:
bkellam 2024-09-19 14:18:11 -07:00
parent cf479de5b1
commit 16bd48dfc6

View file

@ -32,7 +32,8 @@ jobs:
matrix: matrix:
platform: platform:
- linux/amd64 - linux/amd64
- linux/arm64 # @todo: enable arm64 later
# - linux/arm64
steps: steps:
- name: Prepare - name: Prepare
@ -65,7 +66,7 @@ jobs:
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Login to GitHub Packages Docker Registry - name: Login to GitHub Packages Docker Registry
uses: docker/login-action@v1 uses: docker/login-action@v3
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
with: with:
registry: ghcr.io registry: ghcr.io
@ -135,7 +136,7 @@ jobs:
images: ${{ env.REGISTRY_IMAGE }} images: ${{ env.REGISTRY_IMAGE }}
- name: Login to GitHub Packages Docker Registry - name: Login to GitHub Packages Docker Registry
uses: docker/login-action@v1 uses: docker/login-action@v3
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}