Patch App Version Every Month 15th #44
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: Patch App Version Every Month 15th | |
on: | |
schedule: | |
- cron: '0 0 15 * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '5.0.x' | |
- name: Run Version Patcher | |
run: dotnet run --project src/_tools/Bible.Alarm.VersionPatcher/Bible.Alarm.VersionPatcher.csproj --configuration Release | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: buildbot171 | |
author_email: [email protected] | |
message: 'Update app versions' | |
add: "['*.xml', '*.plist', '*.appxmanifest']" |