From bc84d03346eb2337e646c71e36fe72b9a5857176 Mon Sep 17 00:00:00 2001 From: Dan Rose Date: Thu, 20 Jun 2024 15:31:20 -0500 Subject: [PATCH] fix bad yaml --- .github/workflows/CI.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 41003974..c1bf1851 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -201,7 +201,7 @@ jobs: - pnpm steps: - uses: actions/setup-node@v4 - - run: npm init --init-module testproject -y + - run: npm init --init-module testproject -y - if: ${{ matrix.pm == 'npm' }} run: | @@ -225,11 +225,11 @@ jobs: env: YARN_ENABLE_IMMUTABLE_INSTALLS: false YARN_ENABLE_INLINE_BUILDS: true - - uses: actions/upload-artifact@v4 - - if: ${{ failure() && runner.os == 'Windows' }} - with: + - uses: actions/upload-artifact@v4 + if: ${{ failure() && runner.os == 'Windows' }} + with: name: logs-${{matrix.pm}}-${{runner.os}} overwrite: true path: | C:\npm\cache\_logs\ - +