Skip to content

Commit

Permalink
.github: Fix actions/upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
tbantle22 committed Jan 16, 2025
1 parent 23a4e7b commit a54fef8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ jobs:
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
- name: Save screenshots of failed tests
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
name: cypress-screenshots-${{ matrix.runs-on }}
path: cypress/screenshots-${{ matrix.runs-on }}
retention-days: 7
- name: Echo current time
if: failure()
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
CYPRESS_TEST_USERNAME: ${{ secrets.CYPRESS_TEST_USERNAME }}
CYPRESS_TEST_PASSWORD: ${{ secrets.CYPRESS_TEST_PASSWORD }}
- name: Save screenshots of failed tests
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
name: cypress-screenshots-${{ matrix.runs-on }}
path: cypress/screenshots-${{ matrix.runs-on }}
retention-days: 7

0 comments on commit a54fef8

Please sign in to comment.