Skip to content

Commit

Permalink
actually push changes
Browse files Browse the repository at this point in the history
  • Loading branch information
radj307 authored Oct 26, 2023
1 parent 9d8c1ed commit 02cff54
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/UpdateVersion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,13 @@ jobs:
$tag_3_part = $Matches.MAJOR + '.' + $Matches.MINOR + '.' + $Matches.PATCH
$copyright = "Copyright © $((Get-Date).Year) by `$`(Authors`)"
.\SetVersion.ps1 -Path XamlTimers.csproj Version=$tag FileVersion=$tag_3_part Copyright=$copyright
- name: Push Changes
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add -A
git commit -m "Update .csproj Version Numbers"
git push origin
# HEAD:github-actions

0 comments on commit 02cff54

Please sign in to comment.