Generate system calls HTML table #2
This file contains 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: Generate system calls HTML table | |
# | |
# for now it will be manual | |
# | |
on: | |
workflow_dispatch | |
# push: | |
# branches: [ "master" ] | |
jobs: | |
update-tables: | |
permissions: | |
contents: read | |
id-token: write | |
pages: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout syscalls-table | |
uses: actions/checkout@v4 | |
with: | |
path: syscalls-table/ | |
ref: master | |
- name: Install Python package | |
working-directory: syscalls-table/ | |
run: | | |
pip install . | |
- name: Generate system calls HTML | |
working-directory: syscalls-table/ | |
run: | | |
python3 examples/generate-html-table.py > syscalls.html | |
- name: Configure GitHub Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload Artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: syscalls-table/syscalls.html | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |