DashLord report #145
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: DashLord report | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: ["DashLord scans"] | |
branches: [main] | |
types: | |
- completed | |
# allow only one concurrent report action | |
concurrency: | |
cancel-in-progress: true | |
group: report | |
jobs: | |
website: | |
runs-on: ubuntu-latest | |
name: Website | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/cache@v2 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
# build the report | |
- id: dashlord-report | |
uses: SocialGouv/dashlord-actions/report@main | |
# to save the generated report.json as artifact | |
- uses: actions/upload-artifact@v2 | |
with: | |
path: report.json | |
name: report | |
if-no-files-found: error | |
# save full report for history | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
add: '["report.json"]' | |
default_author: github_actions | |
message: "chore: report update" | |
# deploy build to gh-pages | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@4.1.0 | |
with: | |
branch: gh-pages | |
folder: build | |