From 6de690369ab1507be850f59809643e3ef751973b Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Wed, 9 Jul 2025 21:20:45 +0800 Subject: [PATCH] fix(ci): CUDA Toolkit installation log file duplicated - https://github.com/Jimver/cuda-toolkit?tab=readme-ov-file#log-file-suffix --- .github/workflows/release-tamagotchi.yml | 3 ++- eslint.config.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-tamagotchi.yml b/.github/workflows/release-tamagotchi.yml index 69e05c164..395ffca2e 100644 --- a/.github/workflows/release-tamagotchi.yml +++ b/.github/workflows/release-tamagotchi.yml @@ -81,7 +81,8 @@ jobs: uses: Jimver/cuda-toolkit@v0.2.24 if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm' || matrix.os == 'windows-latest' with: - cuda: 12.5.0 + cuda: '12.5.0' + log-file-suffix: ${{matrix.os}}.txt - name: Install dependencies run: pnpm install --frozen-lockfile diff --git a/eslint.config.ts b/eslint.config.ts index 98023ce28..bc01b31fa 100644 --- a/eslint.config.ts +++ b/eslint.config.ts @@ -15,6 +15,7 @@ export default await antfu( '**/.astro/**', ], rules: { + 'yaml/plain-scalar': 'off', 'import/order': 'off', 'antfu/import-dedupe': 'error', 'style/padding-line-between-statements': 'error',