oppdaterte README tillitsmodell #87
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: Archi-report-generation | |
on: | |
push: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
archi_report: | |
permissions: | |
contents: write | |
pages: write | |
runs-on: ubuntu-latest | |
name: Deploy Archi report HTML to GitHub Pages | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Deploy Archi report | |
id: archi | |
uses: WoozyMasta/archimate-ci-image@5.0.2-1.0.4 | |
with: | |
archiHtmlReportEnabled: true | |
archiJasperReportEnabled: true | |
archiJasperReportFormats: PDF | |
archiCsvReportEnabled: false | |
archiExportModelEnabled: true | |
githubToken: ${{ secrets.GITHUB_TOKEN }} |