diff --git a/.github/workflows/push-docker-on-release.yml b/.github/workflows/push-docker-on-release.yml index 2e6c24b7e..7284bbce3 100644 --- a/.github/workflows/push-docker-on-release.yml +++ b/.github/workflows/push-docker-on-release.yml @@ -47,4 +47,4 @@ jobs: tags: ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ steps.get_tag.outputs.tag }} # platforms: linux/arm64/v8,darwin/amd64,linux/amd64,windows/amd64,linux/amd64 # was what I was aiming for # but locally I only got to these 3 (specifically linux/arm64/v8 but yeah) - platforms: linux/arm64,linux/amd64,linux/amd64 + platforms: linux/arm64,linux/amd64 diff --git a/docs/build_and_push_docker_image_workflow_documentation.md b/docs/build_and_push_docker_image_workflow_documentation.md index 4d6bce125..12f501aaa 100644 --- a/docs/build_and_push_docker_image_workflow_documentation.md +++ b/docs/build_and_push_docker_image_workflow_documentation.md @@ -117,7 +117,7 @@ permissions: context: . push: true tags: ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ steps.get_tag.outputs.tag }} - platforms: linux/arm64,linux/amd64,linux/amd64 + platforms: linux/arm64,linux/amd64 ``` - **Description**: Builds and pushes the Docker image to GHCR for the specified platforms. @@ -128,7 +128,6 @@ The workflow builds Docker images for the following platforms: - **linux/arm64** - **linux/amd64** -- **linux/amd64** (Note: The duplication of `linux/amd64` may be unintended.) **Note**: Initially, the aim was to build for additional platforms such as `darwin/amd64` and `windows/amd64`, but due to local limitations, the workflow currently builds for the platforms listed above.