Patch App Version Every Month 15th #59
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: Patch App Version Every Month 15th | |
| on: | |
| schedule: | |
| - cron: '0 2 * * *' | |
| 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: buildbot171@gmail.com | |
| message: 'Update app versions' | |
| add: "['*.xml', '*.plist', '*.appxmanifest']" |