Translations update from Hosted Weblate (#434) #131
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: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
types: [ "review_requested", "ready_for_review" ] | |
workflow_dispatch: | |
name: WinUI | |
jobs: | |
gnome-flatpak: | |
name: "WinUI on Windows" | |
runs-on: windows-latest | |
if: ${{ github.event.pull_request.user.login != 'weblate' }} | |
strategy: | |
matrix: | |
configuration: [Debug] #release doesn't work for some reason | |
platform: [x64, arm64] | |
env: | |
Project_Path: NickvisionTagger.WinUI/NickvisionTagger.WinUI.csproj | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: recursive | |
# Install the .NET Core workload | |
- name: Install .NET Core | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 8.0.x | |
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
# Restore the application to populate the obj folder with RuntimeIdentifiers | |
- name: Restore the application | |
run: msbuild $env:Project_Path /t:Restore /p:Configuration=$env:Configuration | |
env: | |
Configuration: ${{ matrix.configuration }} | |
# Build the app | |
- name: Build the application | |
run: msbuild $env:Project_Path /p:Configuration=$env:Configuration /p:Platform=$env:Platform | |
env: | |
Configuration: ${{ matrix.configuration }} | |
Platform: ${{ matrix.platform }} | |
# Upload the app | |
- name: Upload app | |
uses: actions/[email protected] | |
with: | |
name: org.nickvision.tagger-winui-${{ matrix.platform }} | |
path: ${{ github.workspace }}\NickvisionTagger.WinUI\bin\${{ matrix.platform }}\Debug\net8.0-windows10.0.19041.0 |