Skip to content

📝 Add a link to the website in ReadMe.md. #263

📝 Add a link to the website in ReadMe.md.

📝 Add a link to the website in ReadMe.md. #263

Workflow file for this run

name: Build and Publish
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
matrix:
configuration: [Release]
runs-on: windows-latest
steps:
- name: Prepare artifact name
run: Add-Content -Path $env:GITHUB_ENV -Value "ARTIFACT_NAME=Exo Installer $(Get-Date -Format yyyy-MM-dd)-$env:GITHUB_SHA"
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore the application
run: msbuild Exo.sln /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
# Build the WiX project, which depends on the main projects
- name: Build the installer
run: msbuild src\Exo\Exo.InstallerPackage\Exo.InstallerPackage.wixproj /t:Build /p:Configuration=$env:Configuration /p:Platform=x64 /p:OutputName="$env:ARTIFACT_NAME"
env:
Configuration: ${{ matrix.configuration }}
# Publish the artifact
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: src\Exo\Exo.InstallerPackage\bin\x64\Release\en-US\${{ env.ARTIFACT_NAME }}.msi