From c2c89a16fd65f05b017089f7b2246ec92218a963 Mon Sep 17 00:00:00 2001 From: extremeheat Date: Wed, 8 Jan 2025 06:09:27 -0500 Subject: [PATCH] Update ci.yml actions/upload-artifact (#448) * Update ci.yml actions/upload-artifact * Fix download artifacts https://github.com/actions/download-artifact?tab=readme-ov-file#download-multiple-filtered-artifacts-to-the-same-directory --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5724488b..a3f8421f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: - run: npm run jestTest -- -t ${{ matrix.mcVersion }} - uses: actions/upload-artifact@v4 with: - name: test_picture + name: test_picture-${{ matrix.mcVersion }} path: test/test_*.png DeployPages: runs-on: ubuntu-latest @@ -57,7 +57,9 @@ jobs: - name: Download build uses: actions/download-artifact@v4.1.7 with: - name: test_picture + path: . + pattern: test_picture-* + merge-multiple: true - name: Create commits run: | git config user.name 'rom1504bot'