Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.

Commit 4b18ca9

Browse files
committed
Add Build CI
1 parent b68eda0 commit 4b18ca9

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ $default-branch ]
6+
pull_request:
7+
branches: [ $default-branch ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: windows-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v1
18+
with:
19+
dotnet-version: 5.0.x
20+
- name: Restore dependencies
21+
run: dotnet restore
22+
- name: Build
23+
run: dotnet build --no-restore -c Release
24+
- name: Upload Artifact
25+
uses: actions/upload-artifact@v2
26+
with:
27+
name: Flow.Launcher.Plugin.Everything
28+
path: Output/Release/
29+

0 commit comments

Comments
 (0)