Update GitHub Actions workflow to deploy coverage reports for develop/3.6.0 branch
This commit is contained in:
parent
7a66926f16
commit
e2955c8f1c
4
.github/workflows/packages.yml
vendored
4
.github/workflows/packages.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue