From 92d31b04ae8cb2f464f54cf963fc2ae80bfc67e9 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 16 Mar 2023 12:39:40 +0100 Subject: [PATCH] Change docker registry to ghcr.io --- .github/workflows/ci.yml | 2 +- .github/workflows/pr.yml | 2 +- Dockerfile | 12 ++++++------ README.md | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb33a83..33e18d9 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 ./source --exclude ./source/elfio --exclude ./source/utils/json.hpp + docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source --exclude ./source/elfio --exclude ./source/utils/json.hpp build-binary: runs-on: ubuntu-22.04 needs: clang-format diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 90c0d25..0d38eca 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 ./source --exclude ./source/elfio --exclude ./source/utils/json.hpp + docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source --exclude ./source/elfio --exclude ./source/utils/json.hpp check-build-with-logging: runs-on: ubuntu-22.04 needs: clang-format diff --git a/Dockerfile b/Dockerfile index f34083b..f795044 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM wiiuenv/devkitppc:20221228 +FROM ghcr.io/wiiu-env/devkitppc:20221228 -COPY --from=wiiuenv/wiiumodulesystem:20230106 /artifacts $DEVKITPRO -COPY --from=wiiuenv/wiiupluginsystem:20230215 /artifacts $DEVKITPRO -COPY --from=wiiuenv/libfunctionpatcher:20230108 /artifacts $DEVKITPRO -COPY --from=wiiuenv/libmappedmemory:20220904 /artifacts $DEVKITPRO -COPY --from=wiiuenv/libwupsbackend:20230217 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/wiiumodulesystem:20230106 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/wiiupluginsystem:20230215 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libfunctionpatcher:20230108 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libmappedmemory:20220904 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libwupsbackend:20230217 /artifacts $DEVKITPRO WORKDIR project diff --git a/README.md b/README.md index d53fce6..c92d8f0 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ docker run -it --rm -v ${PWD}:/project wiiupluginloaderbackend-builder make clea ## Format the code via docker -`docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source --exclude ./source/elfio --exclude ./source/utils/json.hpp -i` +`docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source --exclude ./source/elfio --exclude ./source/utils/json.hpp -i` # Credits - Maschell