From 1d00a414d2001c88f37db28e25e04e4b9251777c Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 16 Mar 2023 12:02:30 +0100 Subject: [PATCH] Change docker registry to ghcr.io --- .github/workflows/ci.yml | 2 +- .github/workflows/pr.yml | 2 +- Dockerfile | 6 +++--- README.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bf1a13..5b9fa9b 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 643a34b..90ac4e9 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 7d3a364..e51e484 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM wiiuenv/devkitppc:20221228 +FROM ghcr.io/wiiu-env/devkitppc:20221228 -COPY --from=wiiuenv/libfunctionpatcher:20230106 /artifacts $DEVKITPRO -COPY --from=wiiuenv/wiiumodulesystem:20230106 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/libfunctionpatcher:20230106 /artifacts $DEVKITPRO +COPY --from=ghcr.io/wiiu-env/wiiumodulesystem:20230106 /artifacts $DEVKITPRO WORKDIR project diff --git a/README.md b/README.md index 5005be3..ccc9ad6 100644 --- a/README.md +++ b/README.md @@ -34,4 +34,4 @@ docker run -it --rm -v ${PWD}:/project aromabasemodule-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