From 229d2bf89a2afeaacad8fc312307750d4b249c4e Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 26 Sep 2024 15:19:17 +0200 Subject: [PATCH] workflows: use correct container registry The imported workflows are pointing on the old container registry. Use the correct one. Signed-off-by: Daniel Wagner --- .github/workflows/next.yml | 8 ++++---- .github/workflows/release.yml | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/next.yml b/.github/workflows/next.yml index c263425..df37c8f 100644 --- a/.github/workflows/next.yml +++ b/.github/workflows/next.yml @@ -35,14 +35,14 @@ jobs: push: true provenance: false tags: | - ghcr.io/igaw/linux-nvme/${{ matrix.type }}.staging:next + ghcr.io/linux-nvme/linux-nvme/${{ matrix.type }}.staging:next build_tools: runs-on: ubuntu-latest name: build samurai and muon needs: build_staging container: - image: ghcr.io/igaw/linux-nvme/debian.staging:next + image: ghcr.io/linux-nvme/linux-nvme/debian.staging:next steps: - uses: actions/checkout@v4 - name: build @@ -90,7 +90,7 @@ jobs: push: true provenance: false tags: | - ghcr.io/igaw/linux-nvme/${{ matrix.type }}:next + ghcr.io/linux-nvme/linux-nvme/${{ matrix.type }}:next deploy_cross_containers: runs-on: ubuntu-latest @@ -122,4 +122,4 @@ jobs: push: true provenance: false tags: | - ghcr.io/igaw/linux-nvme/ubuntu-cross-${{ matrix.arch }}:next + ghcr.io/linux-nvme/linux-nvme/ubuntu-cross-${{ matrix.arch }}:next diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a19edad..9355482 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,14 +35,14 @@ jobs: push: true provenance: false tags: | - ghcr.io/igaw/linux-nvme/${{ matrix.type }}.staging:main + ghcr.io/linux-nvme/linux-nvme/${{ matrix.type }}.staging:main build_tools: runs-on: ubuntu-latest name: build samurai and muon needs: build_staging container: - image: ghcr.io/igaw/linux-nvme/debian.staging:main + image: ghcr.io/linux-nvme/linux-nvme/debian.staging:main steps: - uses: actions/checkout@v4 - name: build @@ -92,8 +92,8 @@ jobs: push: true provenance: false tags: | - ghcr.io/igaw/linux-nvme/${{ matrix.type }}:${{ env.RELEASE_VERSION }} - ghcr.io/igaw/linux-nvme/${{ matrix.type }}:latest + ghcr.io/linux-nvme/linux-nvme/${{ matrix.type }}:${{ env.RELEASE_VERSION }} + ghcr.io/linux-nvme/linux-nvme/${{ matrix.type }}:latest deploy_cross_containers: runs-on: ubuntu-latest @@ -127,5 +127,5 @@ jobs: push: true provenance: false tags: | - ghcr.io/igaw/linux-nvme/ubuntu-cross-${{ matrix.arch }}:${{ env.RELEASE_VERSION }} - ghcr.io/igaw/linux-nvme/ubuntu-cross-${{ matrix.arch }}:latest + ghcr.io/linux-nvme/linux-nvme/ubuntu-cross-${{ matrix.arch }}:${{ env.RELEASE_VERSION }} + ghcr.io/linux-nvme/linux-nvme/ubuntu-cross-${{ matrix.arch }}:latest