diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d50ade4..75de3ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,8 +29,10 @@ jobs: # https://github.com/nodejs/docker-node/issues/1973 arch: - amd64 + - arm32v6 + - arm32v7 - arm64v8 - - ppc64le + - s390x runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -68,8 +70,10 @@ jobs: # https://github.com/nodejs/docker-node/issues/1973 arch: - amd64 + - arm32v6 + - arm32v7 - arm64v8 - - ppc64le + - s390x runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -157,8 +161,10 @@ jobs: # https://github.com/nodejs/docker-node/issues/1973 run: | for platform in linux-amd64 \ + linux-arm32v6 \ + linux-arm32v7 \ linux-arm64v8 \ - linux-ppc64le + linux-s390x do make docker.untar \ from-file=.cache/$platform-${{ github.run_number }}/image.tar @@ -178,8 +184,10 @@ jobs: run: make docker.manifest push=yes registries=${{ matrix.registry }} of='${{ steps.version.outputs.group1 }}-linux-amd64 + ${{ steps.version.outputs.group1 }}-linux-arm32v6 + ${{ steps.version.outputs.group1 }}-linux-arm32v7 ${{ steps.version.outputs.group1 }}-linux-arm64v8 - ${{ steps.version.outputs.group1 }}-linux-ppc64le' + ${{ steps.version.outputs.group1 }}-linux-s390x' if: ${{ steps.skip.outputs.no == 'true' }} # On GitHub Container Registry README is automatically updated on pushes.