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:
|
deploy-stage:
|
||||||
name: Upload to Stage
|
name: Upload to Stage
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [build]
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
|
|
@ -82,7 +81,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
php-version: ${{ inputs.php_version }}
|
php-version: ${{ inputs.php_version }}
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: build-${{ github.sha }}
|
name: build-${{ github.sha }}
|
||||||
|
|
||||||
|
|
@ -112,7 +111,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
php-version: ${{ inputs.php_version }}
|
php-version: ${{ inputs.php_version }}
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: build-${{ github.sha }}
|
name: build-${{ github.sha }}
|
||||||
|
|
||||||
|
|
@ -161,7 +160,7 @@ jobs:
|
||||||
|
|
||||||
- name: Upload test report
|
- name: Upload test report
|
||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: playwright-report
|
name: playwright-report
|
||||||
path: ${{ inputs.e2e_path }}/playwright-report/
|
path: ${{ inputs.e2e_path }}/playwright-report/
|
||||||
|
|
@ -169,7 +168,7 @@ jobs:
|
||||||
|
|
||||||
- name: Upload diff screenshots
|
- name: Upload diff screenshots
|
||||||
if: failure()
|
if: failure()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: visual-diff
|
name: visual-diff
|
||||||
path: ${{ inputs.e2e_path }}/test-results/
|
path: ${{ inputs.e2e_path }}/test-results/
|
||||||
|
|
@ -191,7 +190,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
php-version: ${{ inputs.php_version }}
|
php-version: ${{ inputs.php_version }}
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: build-${{ github.sha }}
|
name: build-${{ github.sha }}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue