-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (38 loc) · 852 Bytes
/
build.yml
File metadata and controls
42 lines (38 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
POWERSHELL_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
defaults:
run:
shell: pwsh
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest ]
steps:
- uses: actions/checkout@v1
- name: Build
run: ./build.ps1 -Force
- uses: actions/upload-artifact@v4
if: matrix.os == 'windows-latest'
with:
name: ImpliedReflection
path: ./Release/ImpliedReflection
- uses: actions/upload-artifact@v4
if: matrix.os != 'windows-latest'
with:
name: ImpliedReflection-${{ matrix.os }}
path: ./Release/ImpliedReflection