diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d391c5..c565480 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - 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 befdbe3..7d92147 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v2 - 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 2ed4950..7721a12 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM wiiuenv/devkitppc:20220917 +FROM ghcr.io/wiiu-env/devkitppc:20220917 -COPY --from=wiiuenv/libmappedmemory:20220904 /artifacts $DEVKITPRO -COPY --from=wiiuenv/libcontentredirection:20221010 /artifacts $DEVKITPRO -COPY --from=wiiuenv/wiiupluginsystem:20220904 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libmappedmemory:20220904 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libcontentredirection:20221010 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/wiiupluginsystem:20220904 /artifacts $DEVKITPRO WORKDIR project \ No newline at end of file diff --git a/README.md b/README.md index c1d0cf9..cbd9c95 100644 --- a/README.md +++ b/README.md @@ -95,4 +95,4 @@ docker run -it --rm -v ${PWD}:/project sdcafiineplugin-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