From 4cd80808f17a6f5b042e804a3ffb345990463e94 Mon Sep 17 00:00:00 2001 From: RyzenDew <84041391+RyzenDew@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:13:48 -0300 Subject: [PATCH 1/6] Update build.yml --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e82815250..9356ab522 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: matrix: target: ["appimage", "fresh"] container: - image: citraemu/build-environments:linux-${{ matrix.target }} + image: Lime-3DS-Emulator/build-environments:linux-${{ matrix.target }} options: -u 1001 env: CCACHE_DIR: ${{ github.workspace }}/.ccache From 2740e9054c7328f3320aefe752134632e2f1c494 Mon Sep 17 00:00:00 2001 From: RyzenDew <84041391+RyzenDew@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:14:30 -0300 Subject: [PATCH 2/6] Update ci-merge.js --- .github/workflows/ci-merge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-merge.js b/.github/workflows/ci-merge.js index 39eb43d6e..32f1d62f9 100644 --- a/.github/workflows/ci-merge.js +++ b/.github/workflows/ci-merge.js @@ -200,7 +200,7 @@ async function mergebot(github, context, execa) { } console.info("The following pull requests will be merged:"); console.table(displayList); - await fetchPullRequests(pulls, "https://github.com/citra-emu/citra", execa); + await fetchPullRequests(pulls, "https://github.com/RyzenDew/Lime-3DS-Emulator", execa); const mergeResults = await mergePullRequests(pulls, execa); await generateReadme(pulls, context, mergeResults, execa); await tagAndPush(github, context.repo.owner, `${context.repo.repo}-canary`, execa, true); From cc755941a23716b3ce2bc833d931bd5965882fe9 Mon Sep 17 00:00:00 2001 From: RyzenDew <84041391+RyzenDew@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:15:21 -0300 Subject: [PATCH 3/6] Update build.yml --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9356ab522..df43baf99 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: matrix: target: ["appimage", "fresh"] container: - image: Lime-3DS-Emulator/build-environments:linux-${{ matrix.target }} + image: RyzenDew/build-environments:linux-${{ matrix.target }} options: -u 1001 env: CCACHE_DIR: ${{ github.workspace }}/.ccache From 90dbe919a74374758f07ed1eb94f6402bdf45aa3 Mon Sep 17 00:00:00 2001 From: RyzenDew <84041391+RyzenDew@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:16:05 -0300 Subject: [PATCH 4/6] Update transifex.yml --- .github/workflows/transifex.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml index b7a695f2b..686e54f65 100644 --- a/.github/workflows/transifex.yml +++ b/.github/workflows/transifex.yml @@ -7,7 +7,7 @@ on: jobs: transifex: runs-on: ubuntu-latest - container: citraemu/build-environments:linux-fresh + container: RyzenDew/build-environments:linux-fresh if: ${{ github.repository == 'citra-emu/citra' }} steps: - uses: actions/checkout@v4 From ce4b1f1b4230c29e06210b2fc9ed7399b20b759e Mon Sep 17 00:00:00 2001 From: RyzenDew <84041391+RyzenDew@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:18:36 -0300 Subject: [PATCH 5/6] Delete .github/workflows/publish.yml --- .github/workflows/publish.yml | 59 ----------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index f3faf5d20..000000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,59 +0,0 @@ -name: citra-publish - -on: - schedule: - - cron: '7 0 * * *' - workflow_dispatch: - inputs: - nightly: - description: 'Whether to trigger a nightly build (true/false/auto)' - required: false - default: 'true' - canary: - description: 'Whether to trigger a canary build (true/false/auto)' - required: false - default: 'true' - -jobs: - nightly: - runs-on: ubuntu-latest - if: ${{ github.event.inputs.nightly != 'false' && github.repository == 'RyzenDew/Lime-3DS-Emulator' }} - steps: - # this checkout is required to make sure the GitHub Actions scripts are available - - uses: actions/checkout@v4 - name: Pre-checkout - with: - submodules: false - - uses: actions/github-script@v7 - id: check-changes - name: 'Check for new changes' - env: - # 24 hours - DETECTION_TIME_FRAME: 86400000 - with: - result-encoding: string - script: | - if (context.payload.inputs && context.payload.inputs.nightly === 'true') return true; - const checkBaseChanges = require('./.github/workflows/ci-merge.js').checkBaseChanges; - return checkBaseChanges(github, context); - - run: npm install execa@5 - if: ${{ steps.check-changes.outputs.result == 'true' }} - - uses: actions/checkout@v4 - name: Checkout - if: ${{ steps.check-changes.outputs.result == 'true' }} - with: - path: 'citra-merge' - fetch-depth: 0 - submodules: true - token: ${{ secrets.BUILD_MAGIC }} - - uses: actions/github-script@v7 - name: 'Update and tag new commits' - if: ${{ steps.check-changes.outputs.result == 'true' }} - env: - ALT_GITHUB_TOKEN: ${{ secrets.BUILD_MAGIC }} - with: - script: | - const execa = require("execa"); - const tagAndPush = require('./.github/workflows/ci-merge.js').tagAndPush; - process.chdir('${{ github.workspace }}/citra-merge'); - tagAndPush(github, context.repo.owner, `${context.repo.repo}-nightly`, execa); From 10d2002e7adf594481708392c22965a40acd204b Mon Sep 17 00:00:00 2001 From: RyzenDew <84041391+RyzenDew@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:23:48 -0300 Subject: [PATCH 6/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3336c8649..b3a66832a 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If anyone wants to help Continue This citra Fork please do because i am not a de https://github.com/RyzenDew/Lime-3DS-Emulator/releases -## support me +## How to support me Just subscribe to my YouTube https://www.youtube.com/c/MattsCreative