Skip to content

Commit

Permalink
Fixed R2R compile error (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
shibayan authored Feb 10, 2022
1 parent 9d98071 commit 27993f3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ jobs:
- name: Use MSBuild
uses: microsoft/setup-msbuild@v1.1

- name: Setup NuGet
uses: nuget/setup-nuget@v1

- name: Setup Version
id: setup_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
Expand All @@ -41,12 +38,10 @@ jobs:
$doc.Root.Element($xName).Attribute("Version").Value = "${{ steps.setup_version.outputs.VERSION }}.0";
$doc.Save($path)
- name: Restore NuGet packages
run: nuget restore

- name: Build application
run: >
msbuild .\WinQuickLook.sln
/Restore
/p:Configuration=Release
/p:Version="${{ steps.setup_version.outputs.VERSION }}"
/p:UapAppxPackageBuildMode=StoreUpload
Expand All @@ -55,6 +50,7 @@ jobs:
/p:AppxBundle=Always
/p:AppxPackageSigningEnabled=false
/p:PackageCertificateThumbprint=""
/p:PublishReadyToRun=true
/verbosity:minimal
- name: Upload MSIX
Expand Down

0 comments on commit 27993f3

Please sign in to comment.