Module manager installed, unkown, installable split #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
types: [opened, reopened, synchronize] | |
workflow_call: | |
workflow_dispatch: | |
name: ci-windows | |
env: | |
DOTNET_VERSION: 9.0.x | |
REGISTRY: ghcr.io | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET SDK ${{ env.DOTNET_VERSION }} | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Install maui workload for windows | |
run: dotnet workload install maui-windows | |
- name: Cache NuGet packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Publish OpenShock Desktop Windows | |
run: dotnet publish Desktop/Desktop.csproj -c Release-Windows -o ./publish/Desktop | |
- name: Upload OpenShock Desktop Windows artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenShock Desktop Windows | |
path: publish/Desktop/* | |
retention-days: 1 | |
if-no-files-found: error | |
installer: | |
runs-on: windows-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
Installer | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: OpenShock Desktop Windows | |
path: publish/ | |
- name: Create nsis installer | |
uses: joncloud/makensis-action@publish | |
with: | |
script-file: ${{ github.workspace }}/Installer/installer.nsi | |
additional-plugin-paths: ${{ github.workspace }}/Installer/Plugins | |
- name: Upload OpenShock Desktop Windows Setup | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenShock_Desktop_Setup | |
path: Installer/OpenShock_Desktop_Setup.exe | |
retention-days: 7 | |
if-no-files-found: error |