Remove ARM64 job temporarily, still not working

This commit is contained in:
benoit74 2025-02-07 08:07:23 +00:00
parent b4c0495f48
commit 5af981c01c
No known key found for this signature in database
GPG Key ID: B89606434FC7B530
2 changed files with 49 additions and 47 deletions

View File

@ -5,7 +5,7 @@ on:
types: [published]
jobs:
publish-amd64:
publish-amd64:
runs-on: ubuntu-24.04
name: "Publish for AMD64"
@ -20,7 +20,7 @@ jobs:
latest-on-tag: true
restrict-to: openzim/zimit
registries: ghcr.io
credentials:
credentials: |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }}
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }}
repo_description: auto
@ -28,25 +28,26 @@ jobs:
platforms: |
linux/amd64
publish-arm64:
runs-on: ubuntu-24.04
name: "Publish for ARM64"
steps:
- uses: actions/checkout@v4
- name: Build and push Docker image
uses: openzim/docker-publish-action@v10
with:
image-name: openzim/zimit
tag-pattern: /^v([0-9.]+)$/
latest-on-tag: true
restrict-to: openzim/zimit
registries: ghcr.io
credentials:
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }}
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }}
repo_description: auto
repo_overview: auto
platforms: |
linux/arm64
# Disabled for now, see https://github.com/openzim/zimit/issues/463
# publish-arm64:
# runs-on: ubuntu-24.04
# name: "Publish for ARM64"
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Build and push Docker image
# uses: openzim/docker-publish-action@v10
# with:
# image-name: openzim/zimit
# tag-pattern: /^v([0-9.]+)$/
# latest-on-tag: true
# restrict-to: openzim/zimit
# registries: ghcr.io
# credentials: |
# GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }}
# GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }}
# repo_description: auto
# repo_overview: auto
# platforms: |
# linux/arm64

View File

@ -22,7 +22,7 @@ jobs:
latest-on-tag: false
restrict-to: openzim/zimit
registries: ghcr.io
credentials:
credentials: |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }}
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }}
repo_description: auto
@ -30,25 +30,26 @@ jobs:
platforms: |
linux/amd64
publish-arm64:
runs-on: ubuntu-24.04-arm
name: "Publish for ARM64"
steps:
- uses: actions/checkout@v4
- name: Build and push Docker image
uses: openzim/docker-publish-action@v10
with:
image-name: openzim/zimit
manual-tag: dev
latest-on-tag: false
restrict-to: openzim/zimit
registries: ghcr.io
credentials:
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }}
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }}
repo_description: auto
repo_overview: auto
platforms: |
linux/arm64
# Disabled for now, see https://github.com/openzim/zimit/issues/463
# publish-arm64:
# runs-on: ubuntu-24.04-arm
# name: "Publish for ARM64"
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Build and push Docker image
# uses: openzim/docker-publish-action@v10
# with:
# image-name: openzim/zimit
# manual-tag: dev
# latest-on-tag: false
# restrict-to: openzim/zimit
# registries: ghcr.io
# credentials: |
# GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }}
# GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }}
# repo_description: auto
# repo_overview: auto
# platforms: |
# linux/arm64