Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions .github/workflows/build-base-images-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ jobs:
strategy:
matrix:
base:
- name: nx-base
dockerfile: Docker/NxBase.Dockerfile
tags: |
docker.io/ptr727/nx-base:ubuntu-noble
- name: nx-base-lsio
dockerfile: Docker/NxBase-LSIO.Dockerfile
tags: |
docker.io/ptr727/nx-base-lsio:ubuntu-noble
- name: nx-base
dockerfile: Docker/NxBase.Dockerfile
cache_tag: docker.io/ptr727/nx-base:ubuntu-noble
tags: |
docker.io/ptr727/nx-base:ubuntu-noble
- name: nx-base-lsio
dockerfile: Docker/NxBase-LSIO.Dockerfile
cache_tag: docker.io/ptr727/nx-base-lsio:ubuntu-noble
tags: |
docker.io/ptr727/nx-base-lsio:ubuntu-noble
Comment on lines +20 to +29
Copy link

Copilot AI Feb 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description mentions "Update the Docker Hub README and GitHub Copilot guidance for better clarity and usability" and "Fix syntax issues in the jq command for generating Docker Hub repositories", but these changes are not present in the diff. Either these changes were not included in this PR, or the PR description is inaccurate. Please ensure the PR description accurately reflects the actual changes included.

Copilot uses AI. Check for mistakes.

steps:

Expand Down Expand Up @@ -55,9 +57,9 @@ jobs:
context: Docker
file: ${{ matrix.base.dockerfile }}
platforms: linux/amd64,linux/arm64
tags: ${{ matrix.base.tags }}
cache-from: |
type=registry,ref=${{ matrix.base.tags }}
tags: ${{ matrix.base.tags }}
cache-from: |
type=registry,ref=${{ matrix.base.cache_tag }}
type=gha,scope=develop-base-${{ matrix.base.name }}
type=gha,scope=main-base-${{ matrix.base.name }}
${{ github.event.pull_request && format('type=gha,scope=pr-base-{0}-{1}', github.event.pull_request.number, matrix.base.name) || '' }}
Expand Down
Loading