SkinModSettings allways read from disk #66
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
# This workflow will build and publish a WinUI 3 unpackaged desktop application | |
# built on .NET. | |
name: Test,Build And Release JASM | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'src/**' | |
push: | |
branches: [ main ] | |
paths: | |
- 'src/**' | |
- 'CHANGELOG.md' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: [Release] | |
platform: [x64] | |
runs-on: windows-latest # For a list of available runner types, refer to | |
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Install the .NET Core workload | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Test | |
run: dotnet test ${{ github.workspace }}\src | |
- name: Build, publish and zip the app | |
run: python ${{ github.workspace }}\Build\Release.py | |
shell: cmd | |
# Upload the app | |
- name: Upload JASM | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Upload JASM | |
path: ${{ github.workspace }}\\${{ env.zipFile }} | |