We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9baa8d1 commit 5eff04eCopy full SHA for 5eff04e
.github/workflows/ci.yml
@@ -34,9 +34,14 @@ jobs:
34
- name: linter readme.md
35
run: npm run lint:markdown
36
- name: Cypress run
37
- uses: cypress-io/github-action@v5
+ uses: cypress-io/github-action@v6
38
+ - name: Définir les variables de date et de branche
39
+ run: |
40
+ echo "CURRENT_DATE=$(date '+%Y-%m-%d_%H-%M-%S')" >> $GITHUB_ENV
41
+ echo "CURRENT_BRANCH=${{ github.ref_name }}" >> $GITHUB_ENV
42
- name: Archive screenshots
- uses: actions/upload-artifact@v3
43
+ uses: actions/upload-artifact@v4
44
with:
- name: screenshot
- path: cypress/
45
+ name: "symfony-${{ env.CURRENT_BRANCH }}_${{ env.CURRENT_DATE }}"
46
+ path: cypress/
47
+ retention-days: 7
0 commit comments