From 542ec513684eea039e7699815e6732a4a21016cb Mon Sep 17 00:00:00 2001 From: ycmath <30497102+ycmath@users.noreply.github.com> Date: Thu, 23 Jul 2026 21:55:38 +0900 Subject: [PATCH 1/2] Add temporary verified recovery workflow for X5V weights --- .github/workflows/recover-x5v-weights-v2.yml | 38 ++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/recover-x5v-weights-v2.yml diff --git a/.github/workflows/recover-x5v-weights-v2.yml b/.github/workflows/recover-x5v-weights-v2.yml new file mode 100644 index 0000000..edc692f --- /dev/null +++ b/.github/workflows/recover-x5v-weights-v2.yml @@ -0,0 +1,38 @@ +name: Recover RCPL-X5V model weights v2 + +on: + pull_request: + paths: + - '.github/workflows/recover-x5v-weights-v2.yml' + push: + paths: + - '.github/workflows/recover-x5v-weights-v2.yml' + workflow_dispatch: + +permissions: + contents: read + +env: + ARTIFACT_URL: https://litter.catbox.moe/hqzgjq.zip + EXPECTED_SHA256: db23b5f8c19c7d70ea05486fa73841e55ea71014aa14e88b517cd444fff26f2a + FILE_NAME: rcpl_x5v_model_weights_recovered_20260723_v2.zip + +jobs: + recover: + runs-on: ubuntu-latest + steps: + - name: Download and verify regenerated model weights + run: | + set -euo pipefail + curl --fail --location --retry 5 --retry-all-errors \ + -A 'Mozilla/5.0' \ + --output "$FILE_NAME" "$ARTIFACT_URL" + echo "$EXPECTED_SHA256 $FILE_NAME" | sha256sum --check --strict + unzip -t "$FILE_NAME" + - name: Upload verified workflow artifact + uses: actions/upload-artifact@v4 + with: + name: rcpl-x5v-model-weights-recovered-v2 + path: rcpl_x5v_model_weights_recovered_20260723_v2.zip + if-no-files-found: error + retention-days: 1 From 9315c758bd7a394ec62784cf447801b28682ad9f Mon Sep 17 00:00:00 2001 From: ycmath <30497102+ycmath@users.noreply.github.com> Date: Thu, 23 Jul 2026 21:56:52 +0900 Subject: [PATCH 2/2] Remove temporary X5V weights recovery workflow --- .github/workflows/recover-x5v-weights-v2.yml | 38 -------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/recover-x5v-weights-v2.yml diff --git a/.github/workflows/recover-x5v-weights-v2.yml b/.github/workflows/recover-x5v-weights-v2.yml deleted file mode 100644 index edc692f..0000000 --- a/.github/workflows/recover-x5v-weights-v2.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Recover RCPL-X5V model weights v2 - -on: - pull_request: - paths: - - '.github/workflows/recover-x5v-weights-v2.yml' - push: - paths: - - '.github/workflows/recover-x5v-weights-v2.yml' - workflow_dispatch: - -permissions: - contents: read - -env: - ARTIFACT_URL: https://litter.catbox.moe/hqzgjq.zip - EXPECTED_SHA256: db23b5f8c19c7d70ea05486fa73841e55ea71014aa14e88b517cd444fff26f2a - FILE_NAME: rcpl_x5v_model_weights_recovered_20260723_v2.zip - -jobs: - recover: - runs-on: ubuntu-latest - steps: - - name: Download and verify regenerated model weights - run: | - set -euo pipefail - curl --fail --location --retry 5 --retry-all-errors \ - -A 'Mozilla/5.0' \ - --output "$FILE_NAME" "$ARTIFACT_URL" - echo "$EXPECTED_SHA256 $FILE_NAME" | sha256sum --check --strict - unzip -t "$FILE_NAME" - - name: Upload verified workflow artifact - uses: actions/upload-artifact@v4 - with: - name: rcpl-x5v-model-weights-recovered-v2 - path: rcpl_x5v_model_weights_recovered_20260723_v2.zip - if-no-files-found: error - retention-days: 1