tweak css for message descriptions #92
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: deploy_sphinx | |
| permissions: | |
| id-token: write | |
| pages: write | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| # dispatch from the main repo, needs PAT with access to both repos | |
| repository_dispatch: | |
| types: [spec-update] | |
| # run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Checkout spec repo | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: SampleEnvironment/SECoP | |
| path: ./SECoP | |
| - name: copy over spec | |
| run: cp -r ./SECoP/protocol/specification/* source/specification | |
| - name: process rfcs | |
| run: python process_rfcs.py ./SECoP/rfcs source/rfcs | |
| - name: Import secop-img SVGs | |
| uses: robinraju/release-downloader@v1.10 | |
| with: | |
| repository: 'Bilchreis/secop-img' | |
| latest: true | |
| tarBall: false | |
| zipBall: false | |
| fileName: '*.svg' | |
| out-file-path: 'source/specification/images/secop-img' | |
| - name: install sphinx | |
| run: pip install -r requirements.txt | |
| - name: build with sphinx | |
| run: make html | |
| - name: Upload | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: ./build/html | |
| # Deployment job | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |