Update GitHub Actions workflow to deploy coverage reports for develop/3.6.0 branch

This commit is contained in:
Sipke Schoorstra 2025-11-27 21:06:58 +01:00
parent 7a66926f16
commit e2955c8f1c
No known key found for this signature in database
GPG key ID: 5C10502B28A4268F

View file

@ -89,7 +89,7 @@ jobs:
path: artifacts/coverage
- name: Upload Pages artifact
if: always() && github.ref == 'refs/heads/main'
if: always() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop/3.6.0')
uses: actions/upload-pages-artifact@v3
with:
path: './artifacts/coverage-report'
@ -190,7 +190,7 @@ jobs:
name: Deploy coverage to GitHub Pages
needs: test
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop/3.6.0'
permissions:
pages: write
id-token: write