Merge pull request #18 from alexpolo1/fix/deploy-artifact-quota
fix: don't fail deploy jobs when diagnostic artifact upload hits quota
This commit is contained in:
5
.github/workflows/deploy-prod.yml
vendored
5
.github/workflows/deploy-prod.yml
vendored
@@ -119,6 +119,7 @@ jobs:
|
||||
|
||||
- name: Upload coverage report
|
||||
uses: actions/upload-artifact@v7
|
||||
continue-on-error: true
|
||||
with:
|
||||
name: backend-coverage
|
||||
path: backend/coverage
|
||||
@@ -432,6 +433,8 @@ jobs:
|
||||
- name: Upload test report
|
||||
uses: actions/upload-artifact@v7
|
||||
if: always()
|
||||
# Artifact upload must never fail the job (storage quota can be full)
|
||||
continue-on-error: true
|
||||
with:
|
||||
name: prod-smoke-test-report
|
||||
path: tests/playwright-report
|
||||
@@ -440,6 +443,8 @@ jobs:
|
||||
- name: Upload test screenshots
|
||||
uses: actions/upload-artifact@v7
|
||||
if: failure()
|
||||
# Artifact upload must never fail the job (storage quota can be full)
|
||||
continue-on-error: true
|
||||
with:
|
||||
name: prod-test-screenshots
|
||||
path: tests/test-results
|
||||
|
||||
4
.github/workflows/deploy-test.yml
vendored
4
.github/workflows/deploy-test.yml
vendored
@@ -247,6 +247,8 @@ jobs:
|
||||
- name: Upload test report
|
||||
uses: actions/upload-artifact@v7
|
||||
if: always()
|
||||
# Artifact upload must never fail the job (storage quota can be full)
|
||||
continue-on-error: true
|
||||
with:
|
||||
name: e2e-test-report
|
||||
path: tests/playwright-report
|
||||
@@ -255,6 +257,8 @@ jobs:
|
||||
- name: Upload test screenshots
|
||||
uses: actions/upload-artifact@v7
|
||||
if: failure()
|
||||
# Artifact upload must never fail the job (storage quota can be full)
|
||||
continue-on-error: true
|
||||
with:
|
||||
name: e2e-test-screenshots
|
||||
path: tests/test-results
|
||||
|
||||
Reference in New Issue
Block a user