Skip to content

Commit

Permalink
Fix docker image deployment
Browse files Browse the repository at this point in the history
Signed-off-by: K0IN <19688162+K0IN@users.noreply.github.com>
  • Loading branch information
K0IN committed Jul 10, 2023
1 parent 95b92de commit d74c5dc
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/deploy-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,27 @@ name: Build and publish a Docker image
on:
push:
branches:
- 'main'
- '*'

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push-image:
name: Build ${{ matrix.platform }} docker image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

strategy:
matrix:
platform: [linux/amd64, linux/arm/v6, linux/arm/v7, linux/arm64/v8]

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
Expand All @@ -28,19 +33,14 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
with:
image: tonistiigi/binfmt:latest
platforms: all

uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -49,10 +49,10 @@ jobs:
type=raw,value={{branch}}
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
uses: docker/build-push-action@v4
with:
builder: ${{ steps.buildx.outputs.name }}
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8 # ,linux/ppc64le ,linux/s390x - not supported by npm?
platforms: ${{ matrix.platform }}
context: .
push: ${{ github.ref == 'refs/heads/main' }}
tags: ${{ steps.meta.outputs.tags }}
Expand Down

0 comments on commit d74c5dc

Please sign in to comment.