Skip to content

Commit ac72418

Browse files
authored
Merge branch 'main' into copilot/extend-readthedocs-api-docs
2 parents b716a68 + 173b292 commit ac72418

7 files changed

Lines changed: 3849 additions & 0 deletions

File tree

.github/workflows/actions.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
run: ./specdatri collect-stats
2525
- name: generate reports
2626
run: ./specdatri generate-reports
27+
- name: generate dashboard
28+
run: ./specdatri generate-dashboard
2729
- name: commit files
2830
run: |
2931
git config --local user.email "action@github.com"

.github/workflows/pages.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Deploy dashboard to GitHub Pages
2+
on:
3+
push:
4+
branches:
5+
- main
6+
paths:
7+
- 'docs/**'
8+
workflow_dispatch:
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: false
16+
jobs:
17+
deploy:
18+
environment:
19+
name: github-pages
20+
url: ${{ steps.deployment.outputs.page_url }}
21+
runs-on: ubuntu-22.04
22+
steps:
23+
- name: checkout repo content
24+
uses: actions/checkout@v4
25+
- name: configure GitHub Pages
26+
uses: actions/configure-pages@v5
27+
- name: upload artifact
28+
uses: actions/upload-pages-artifact@v3
29+
with:
30+
path: docs
31+
- name: deploy to GitHub Pages
32+
id: deployment
33+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)