Skip to content

Commit

Permalink
workflows: use correct container registry
Browse files Browse the repository at this point in the history
The imported workflows are pointing on the old container registry. Use
the correct one.

Signed-off-by: Daniel Wagner <[email protected]>
  • Loading branch information
igaw committed Sep 26, 2024
1 parent ffaa9aa commit 229d2bf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 229d2bf

Please sign in to comment.