Skip to content

Bump actions/download-artifact from 4.1.1 to 4.1.2 #97

Bump actions/download-artifact from 4.1.1 to 4.1.2

Bump actions/download-artifact from 4.1.1 to 4.1.2 #97

name: MarkdownSnippets
on:
push:
branches:
- '**'
tags-ignore:
- '*.*'
jobs:
documentation:
name: Process documentation
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Run MarkdownSnippets
run: |
dotnet tool install --global MarkdownSnippets.Tool
mdsnippets ${GITHUB_WORKSPACE} -c InPlaceOverwrite
git add .
shell: bash
- name: Fix links
run: find ${GITHUB_WORKSPACE} -name "*.md" -not -name "*.source.md" -type f -exec sed -i '6,$s/\.source\.md/\.md/g' {} \;
shell: bash
- name: Push changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m "MarkdownSnippets documentation changes" -a || echo "nothing to commit"
remote="https://${GITHUB_ACTOR}:${{secrets.GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git"
branch="${GITHUB_REF:11}"
git push "${remote}" ${branch} || echo "nothing to push"
shell: bash