Delete .idea directory #29
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
name: Build Status Swift | |
# Workflow triggers | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# Jobs to be executed | |
jobs: | |
build: | |
runs-on: windows-latest | |
env: | |
ProjectName: StatusSwift.csproj | |
DotNetVersion: 8.0.x | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install .NET SDK ${{env.DotNetVersion}} | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '${{env.DotNetVersion}}' | |
- name: Install MAUI workload | |
run: dotnet workload install maui-desktop wasm-tools | |
- name: .NET - Publish | |
working-directory: './StatusSwift' | |
run: dotnet publish ${{env.ProjectName}} -c Release -f net8.0-windows10.0.19041.0 | |
- name: Upload Build Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
path: .\**\*.msix |