Skip to content

Commit 0bfa5be

Browse files
committed
Change docker registry to ghcr.io
1 parent 9fc60b3 commit 0bfa5be

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- name: clang-format
1414
run: |
15-
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src
15+
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src
1616
build-binary:
1717
runs-on: ubuntu-22.04
1818
needs: clang-format

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v3
1010
- name: clang-format
1111
run: |
12-
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src
12+
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src
1313
check-build-with-logging:
1414
runs-on: ubuntu-22.04
1515
needs: clang-format

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM wiiuenv/devkitppc:20221228
1+
FROM ghcr.io/wiiu-env/devkitppc:20221228
22

3-
COPY --from=wiiuenv/libfunctionpatcher:20230106 /artifacts $DEVKITPRO
4-
COPY --from=wiiuenv/wiiumodulesystem:20230106 /artifacts $DEVKITPRO
5-
COPY --from=wiiuenv/libromfs_wiiu:20220904 /artifacts $DEVKITPRO
6-
COPY --from=wiiuenv/libcontentredirection:20221010 /artifacts $DEVKITPRO
3+
COPY --from=ghcr.io/wiiu-env/libfunctionpatcher:20230106 /artifacts $DEVKITPRO
4+
COPY --from=ghcr.io/wiiu-env/wiiumodulesystem:20230106 /artifacts $DEVKITPRO
5+
COPY --from=ghcr.io/wiiu-env/libromfs_wiiu:20220904 /artifacts $DEVKITPRO
6+
COPY --from=ghcr.io/wiiu-env/libcontentredirection:20221010 /artifacts $DEVKITPRO
77

88
WORKDIR project

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ docker run -it --rm -v ${PWD}:/project contentredirectionmodule-builder make cle
3535

3636
## Format the code via docker
3737

38-
`docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src -i`
38+
`docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src -i`

0 commit comments

Comments
 (0)