Skip to content

Commit

Permalink
use spaces for yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Jun 3, 2022
1 parent 910c48d commit cf15629
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 30 deletions.
6 changes: 5 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,8 @@ indent_style = tab
indent_size = 2

[*{.props,.targets}]
indent_size = 2
indent_size = 2

[*.yml]
indent_size = 2
indent_style = space
58 changes: 29 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
name: Build Package

on:
push:
branches: [main]
pull_request:
branches: [main]
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
name: Build AlohaKit
runs-on: windows-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
build:
name: Build-AlohaKit
runs-on: windows-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup .NET Core 6.0
uses: actions/setup-dotnet@v2
with:
dotnet-version: '6.0.x'
- name: Setup .NET Core 6.0
uses: actions/setup-dotnet@v2
with:
dotnet-version: '6.0.x'

- name: Install .NET MAUI Workload
run: dotnet workload install maui
- name: Install .NET MAUI Workload
run: dotnet workload install maui

- name: NuGet Restore
run: dotnet restore ./src/AlohaKit
- name: NuGet Restore
run: dotnet restore ./src/AlohaKit

- name: DotNet Build
run: dotnet build ./src/AlohaKit -c Release
- name: DotNet Build
run: dotnet build ./src/AlohaKit -c Release

- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: NuGet
path: Artifacts/
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: NuGet
path: Artifacts/

0 comments on commit cf15629

Please sign in to comment.