(deps): Bump MSBuild.ProjectCreation from 13.0.0 to 14.0.0 in /src #123
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: Markdown Update | |
on: | |
push: | |
env: | |
DOTNET_ROLL_FORWARD: "Major" | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: 1 | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
docs: | |
name: Update Markdown (embedded snippets) | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: global.json | |
- | |
name: Run MarkdownSnippets | |
run: | | |
dotnet tool install --global MarkdownSnippets.Tool | |
mdsnippets --write-header false | |
working-directory: ${{ github.workspace }}/docs/input | |
- | |
name: Check for changes | |
id: status | |
run: | | |
if ($null -ne (git status --porcelain)) { echo "has_changes=1"; echo "has_changes=1" >> $env:GITHUB_OUTPUT } | |
- | |
name: Push changes | |
run: | | |
git add --verbose . | |
git config user.name 'Artur Stolear' | |
git config user.email '[email protected]' | |
git commit -m 'Docs changes' --allow-empty | |
git push --force | |
if: steps.status.outputs.has_changes == '1' |