Skip to content

Commit

Permalink
add action to generate SoC html table
Browse files Browse the repository at this point in the history
  • Loading branch information
hrw committed Oct 28, 2023
1 parent 9067315 commit c645ad2
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/generate-html-files.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Generate HTML tables

on:
workflow_dispatch


jobs:
generate-and-deploy:
permissions:
contents: read
id-token: write
pages: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: master

- name: Generate SoC features HTML
run: |
mkdir -p out
python3 generate.py > out/syscalls.html
- name: Configure GitHub Pages
uses: actions/configure-pages@v3

- name: Upload Artifact
uses: actions/upload-pages-artifact@v2
with:
path: out/

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit c645ad2

Please sign in to comment.