New issue from Jiang An: "std::atomic_ref<const T> can be constructed… #1377
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
| # A workflow to update the online issues lists. | |
| name: Generate HTML pages | |
| on: | |
| # This job must only be run when changes are pushed to the master branch! | |
| push: | |
| branches: [ master ] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
| # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| generate-html-pages: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone XML sources | |
| uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ env.BRANCH }} | |
| # Using fetch-depth implies --single-branch so we don't fetch | |
| # the gh-pages branch (which avoids fetching 99% of the objects). | |
| fetch-depth: 2147483647 | |
| - name: Generate HTML lists | |
| run: make CXX=g++-14 -j $(getconf _NPROCESSORS_ONLN) lists | |
| # Make the HTML pages available to the deploy job below. | |
| - name: Upload artifacts | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: mailing/ | |
| # Deployment job | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| needs: generate-html-pages | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |