From a44dab108c0b5d5f19440ebfb74f027eb067c84a Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 18 Mar 2023 15:08:04 +0100 Subject: [PATCH] Change docker registry to ghcr.io --- .github/workflows/ci.yml | 2 +- .github/workflows/pr.yml | 2 +- Dockerfile | 8 ++++---- README.md | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc00b4e..e65779f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - name: clang-format run: | - docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src + docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src build-binary: runs-on: ubuntu-22.04 needs: clang-format diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 899afd8..b8264eb 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v3 - name: clang-format run: | - docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src + docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src check-build-with-logging: runs-on: ubuntu-22.04 needs: clang-format diff --git a/Dockerfile b/Dockerfile index 17a0a12..38e43fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM wiiuenv/devkitppc:20221228 +FROM ghcr.io/wiiu-env/devkitppc:20221228 -COPY --from=wiiuenv/wiiumodulesystem:20230106 /artifacts $DEVKITPRO -COPY --from=wiiuenv/libromfs_wiiu:20220904 /artifacts $DEVKITPRO -COPY --from=wiiuenv/libwuhbutils:20220903 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/wiiumodulesystem:20230106 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libromfs_wiiu:20220904 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libwuhbutils:20220903 /artifacts $DEVKITPRO WORKDIR project diff --git a/README.md b/README.md index 6f337ea..78a8d86 100644 --- a/README.md +++ b/README.md @@ -35,4 +35,4 @@ docker run -it --rm -v ${PWD}:/project wuhbutils-builder make clean ## Format the code via docker -`docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src -i` \ No newline at end of file +`docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src -i` \ No newline at end of file