Skip to content

Update README.md

Update README.md #17

Workflow file for this run

name: "Update Version"
on:
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
schedule:
- cron: "19 16 * * 2"
jobs:
versioning:
name: Versioning
runs-on: ubuntu-latest
permissions:
actions: read
contents: write
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup .net core
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.x"
- name: install gitversion
uses: gittools/actions/gitversion/setup@v0
with:
versionspec: "5.x"
- name: Use GitVersion
id: gitversion
uses: gittools/actions/gitversion/execute@v0
- name: Create version file
run: |
echo "Version: ${{ steps.gitversion.outputs.majorMinorPatch }}" > version.txt
- name: Commit and push
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add version.txt
git commit -m "Update version"
git push