Bump System.Text.Json from 10.0.0 to 10.0.1 (#232) #27
This file contains hidden or 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: Build or Update HTML from AsciiDoc | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| run_html_build: | |
| runs-on: ubuntu-latest | |
| name: Build HTML from AsciiDoc | |
| # Prevent runs triggered by the create-pull-request bot to avoid loops | |
| if: github.actor != 'github-actions[bot]' | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| # git-restore-mtime-bare uses the ref log to find the correct timestamp | |
| # for each file. This requires a full git history. The default value (1) | |
| # creates a shallow checkout. | |
| fetch-depth: 0 | |
| # Fix timestamps | |
| - name: restore timestamps | |
| uses: chetan/git-restore-mtime-action@v2 | |
| - name: Install system packages for diagrams | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y graphviz plantuml default-jre | |
| - name: setup ruby | |
| uses: actions/setup-ruby@v1 | |
| - name: Install Asciidoctor gems | |
| run: | | |
| gem install asciidoctor | |
| gem install asciidoctor-diagram | |
| gem install rouge | |
| - name: Run AsciiDoc -> HTML builder | |
| working-directory: ./scripts | |
| shell: pwsh | |
| run: | | |
| ./Ascii-doc-html_creator.ps1 | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| commit-message: update asciidoc html files [skip ci] | |
| title: Update Html from AsciiDoc | |
| body: Updated HTML files generated from AsciiDoc sources. | |
| branch: update-asciidoc-html-${{ github.run_id }} | |
| base: main |