This commit is contained in:
parent
1a18d28c34
commit
500d03902f
1 changed files with 5 additions and 6 deletions
|
|
@ -74,7 +74,6 @@ jobs:
|
|||
deploy-stage:
|
||||
name: Upload to Stage
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build]
|
||||
|
||||
steps:
|
||||
- name: Setup PHP
|
||||
|
|
@ -82,7 +81,7 @@ jobs:
|
|||
with:
|
||||
php-version: ${{ inputs.php_version }}
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: build-${{ github.sha }}
|
||||
|
||||
|
|
@ -112,7 +111,7 @@ jobs:
|
|||
with:
|
||||
php-version: ${{ inputs.php_version }}
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: build-${{ github.sha }}
|
||||
|
||||
|
|
@ -161,7 +160,7 @@ jobs:
|
|||
|
||||
- name: Upload test report
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: playwright-report
|
||||
path: ${{ inputs.e2e_path }}/playwright-report/
|
||||
|
|
@ -169,7 +168,7 @@ jobs:
|
|||
|
||||
- name: Upload diff screenshots
|
||||
if: failure()
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: visual-diff
|
||||
path: ${{ inputs.e2e_path }}/test-results/
|
||||
|
|
@ -191,7 +190,7 @@ jobs:
|
|||
with:
|
||||
php-version: ${{ inputs.php_version }}
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: build-${{ github.sha }}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue