Create push_master.yml

This commit is contained in:
2024-03-11 00:21:34 +01:00
committed by GitHub
Unverified
parent 8f34f7c2cc
commit e68e052bbb

51
.github/workflows/push_master.yml vendored Normal file
View File

@@ -0,0 +1,51 @@
name: Build and publish application on master push
on:
push:
branches:
- "master"
paths:
- "VDownload**"
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Setup GitVersion
uses: gittools/actions/gitversion/setup@v0.9.7
with:
versionSpec: 5.x
- name: Determine Version
uses: gittools/actions/gitversion/execute@v0.9.7
id: gitversion
with:
useConfigFile: true
configFilePath: ./.github/config/gitversion.yml
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set version in VDownload.csproj file
id: package_version
uses: KageKirin/set-csproj-version@v0
with:
file: VDownload/VDownload.csproj
version: ${{steps.gitversion.outputs.SemVer}}
- name: Set version in Package.appxmanifest file
uses: Nambers/ReplaceStringInFile@v1.3
with:
path: VDownload/Package.appxmanifest
oldString: "Version=\"0.0.0.0\""
newString: "Version=\"${{steps.gitversion.outputs.major}}.${{steps.gitversion.outputs.minor}}.${{steps.gitversion.outputs.patch}}.0\""
showFileContent: true
- name: Set version in app.manifest file
uses: Nambers/ReplaceStringInFile@v1.3
with:
path: VDownload/app.manifest
oldString: "assemblyIdentity version=\"0.0.0.0\""
newString: "assemblyIdentity version=\"${{steps.gitversion.outputs.major}}.${{steps.gitversion.outputs.minor}}.${{steps.gitversion.outputs.patch}}.0\""
showFileContent: true