Skip to content

Test 8

Test 8 #10

Workflow file for this run

name: Sphinx Deploy
on: [push]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1
- name: Setup NuGet
uses: NuGet/[email protected]
- name: setup-msbuild
uses: microsoft/[email protected]
- name: Restore Packages
run: nuget restore src/Sphinx.sln
- name: Build solution
run: >
msbuild src/Sphinx.sln
-property:Configuration=Release
-property:OutDir=.\dist\
-property:Configuration=Release
-property:GenerateSerializationAssemblies=False
-property:WebPublishMethod=Package
-property:PackageAsSingleFile=true
-property:IncludeSetAclProviderOnDestination=False
-property:AutoParameterizationWebConfigConnectionStrings=false
- name: Setup MSDeploy
uses: ChristopheLav/iis-deploy@v1
with:
website-name: 'Sphinx'
msdeploy-service-url: '${{ secrets.MSDEPLOY_URL }}'
msdeploy-username: ${{ secrets.MSDEPLOY_USERNAME }}
msdeploy-password: '${{ secrets.MSDEPLOY_PASSWORD }}'
source-path: ${{ github.workspace }}\dist\_PublishedWebsites\Dsp.Web_Package\Dsp.Web.zip