Skip to content

Commit 647c050

Browse files
authored
Merge pull request #4 from CorefluxCommunity/buildmaster_actions
Create build action for master.
2 parents 16f5f44 + 48c0cf3 commit 647c050

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build_master.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Build Master Branch"
2+
3+
on:
4+
push:
5+
branches:
6+
- "master"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v1
14+
15+
- name: Setup .NET Core
16+
uses: actions/setup-dotnet@v1
17+
18+
- name: Build
19+
run: dotnet build --configuration Release

0 commit comments

Comments
 (0)