diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a8ddfab..96b861a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,11 @@ jobs: with: fetch-depth: 0 + - name: Prepare envars + run: | + echo "SHORT_SHA=$("${{ github.sha }}" | cut -c1-8)" >> $env:GITHUB_ENV + echo "APP_VERSION=$((Get-Content -Path "App.xaml.cs" | Select-String -Pattern 'VERSION\s=\s"(.+)"' -AllMatches).Matches.Groups[1].Value)" >> $env:GITHUB_ENV + - name: Patch project files run: | (Get-Content app\ParsecVDisplay.csproj) -replace "FrameworkVersion>v4.5", "FrameworkVersion>v4.8" | Out-File app\ParsecVDisplay.csproj @@ -28,8 +33,9 @@ jobs: - name: Build app run: | cd app - msbuild ParsecVDisplay.csproj /t:Build /p:Configuration=Release /p:Platform=AnyCPU + msbuild ParsecVDisplay.csproj /t:Build /p:Configuration=Debug /p:Platform=AnyCPU - uses: actions/upload-artifact@v4 with: + name: ParsecVDisplay-v${{ env.APP_VERSION }}-${{ env.SHORT_SHA }} path: app/bin