fix: add newline at end of .markdownlint.json file #45
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: Main Branch CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| Build-Code: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install GitVersion | |
| uses: gittools/actions/gitversion/setup@v3.1.11 | |
| with: | |
| versionSpec: '5.x' | |
| - name: Determine Version | |
| uses: gittools/actions/gitversion/execute@v3.1.11 | |
| with: | |
| useConfigFile: true | |
| - name: Create git tag | |
| run: | | |
| git tag ${{ env.GitVersion_MajorMinorPatch }} | |
| if: github.ref == 'refs/heads/main' | |
| - name: Push git tag | |
| run: git push origin ${{ env.GitVersion_MajorMinorPatch }} | |
| if: github.ref == 'refs/heads/main' |