diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac0de88..0af8e78 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 + docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source build-binary: runs-on: ubuntu-22.04 needs: clang-format diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 2e3a1ef..1ffefe7 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 + docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source check-build-with-logging: runs-on: ubuntu-22.04 needs: clang-format diff --git a/Dockerfile b/Dockerfile index fbe5cd4..b0405be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM wiiuenv/devkitppc:20221228 +FROM ghcr.io/wiiu-env/devkitppc:20221228 -COPY --from=wiiuenv/libkernel:20220904 /artifacts $DEVKITPRO -COPY --from=wiiuenv/wiiumodulesystem:20230106 /artifacts $DEVKITPRO -COPY --from=wiiuenv/libmocha:20220919 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libkernel:20220904 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/wiiumodulesystem:20230106 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libmocha:20220919 /artifacts $DEVKITPRO WORKDIR project \ No newline at end of file diff --git a/README.md b/README.md index 2ee0d5c..d7e75ef 100644 --- a/README.md +++ b/README.md @@ -32,4 +32,4 @@ docker run -it --rm -v ${PWD}:/project usbserialloggermodule-builder make clean ## Format the code via docker -`docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source -i` \ No newline at end of file +`docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source -i` \ No newline at end of file