sort typelist based on pagerank + add circo root #516
Workflow file for this run
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
| name: Push | |
| on: push | |
| permissions: {} | |
| jobs: | |
| ci: | |
| permissions: | |
| contents: read # for actions/checkout | |
| security-events: write # for codeql-action | |
| uses: ./.github/workflows/ci.yml | |
| changelog: | |
| permissions: | |
| contents: read # for actions/checkout | |
| uses: ./.github/workflows/changelog.yml | |
| deploy-to-gh-pages: | |
| name: Deploy to GitHub Pages | |
| needs: ci | |
| if: github.ref == 'refs/heads/main' | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pages: write # for actions/deploy-pages | |
| id-token: write # for actions/deploy-pages | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5 | |
| with: | |
| artifact_name: demoDist |