Merge pull request #1360 from ldorau/Add_missing_suppressions_for_ups… #891
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Deploy documentation to GitHub Pages | |
| name: GitHubPages | |
| on: | |
| push: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| # Cancel previous in-progress workflow, only the latest run is relevant | |
| concurrency: | |
| group: "docs" | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| DocsBuild: | |
| uses: ./.github/workflows/reusable_docs_build.yml | |
| with: | |
| upload: true | |
| DocsDeploy: | |
| name: Deploy docs to GitHub Pages | |
| needs: DocsBuild | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-22.04' || 'ubuntu-latest' }} | |
| steps: | |
| - name: Deploy the documentation to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5 |