From 02ed85339987464e8e9741d265cc60dbaec066e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Wed, 24 Nov 2021 10:01:35 +0100 Subject: [PATCH] Switching to actions/upload-artifact --- .github/workflows/end_to_end_tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/end_to_end_tests.yml b/.github/workflows/end_to_end_tests.yml index 58703af0..11561fa1 100644 --- a/.github/workflows/end_to_end_tests.yml +++ b/.github/workflows/end_to_end_tests.yml @@ -37,8 +37,8 @@ jobs: - name: Upload failed tests if: ${{ failure() }} - uses: edunad/actions-image@v1.0.0 + uses: actions/upload-artifact@v2 with: - path: './tests/screenshots/**/*.png' - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - title: 'Failed E2E tests 🙀' + name: my-artifact + path: './tests/screenshots/' +