File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments