Merge branch 'PretendoNetwork:main' into main

This commit is contained in:
ADev531 2025-12-18 21:29:58 +09:00 committed by GitHub
commit d08482ae5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 3 deletions

View file

@ -11,3 +11,9 @@ updates:
interval: "weekly" interval: "weekly"
commit-message: commit-message:
prefix: "chore: " prefix: "chore: "
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
commit-message:
prefix: "chore: "

View file

@ -1,4 +1,6 @@
name: Inkay-CI name: Inkay-CI
permissions:
contents: read
on: on:
- push - push
@ -8,13 +10,13 @@ jobs:
build-inkay: build-inkay:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- name: build toolchain container - name: build toolchain container
run: docker build . -t builder run: docker build . -t builder
- uses: ammaraskar/gcc-problem-matcher@master - uses: ammaraskar/gcc-problem-matcher@master
- name: build Inkay - name: build Inkay
run: docker run --rm -v ${PWD}:/app -w /app builder run: docker run --rm -v ${PWD}:/app -w /app builder
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v6
with: with:
name: inkay name: inkay
path: dist/ path: dist/

View file

@ -1,4 +1,4 @@
FROM ghcr.io/wiiu-env/devkitppc:20241128 FROM ghcr.io/wiiu-env/devkitppc:20250608
COPY --from=ghcr.io/wiiu-env/libnotifications:20240426 /artifacts $DEVKITPRO COPY --from=ghcr.io/wiiu-env/libnotifications:20240426 /artifacts $DEVKITPRO
COPY --from=ghcr.io/wiiu-env/libfunctionpatcher:20230621 /artifacts $DEVKITPRO COPY --from=ghcr.io/wiiu-env/libfunctionpatcher:20230621 /artifacts $DEVKITPRO