Skip to content

Commit c048a56

Browse files
committed
Release v0.0.1
1 parent 92f6010 commit c048a56

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/CICD-TEST.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@ on:
77

88
jobs:
99
build:
10-
runs-on: ubuntu-latest # 실행할 runner 환경 지정
10+
runs-on: windows-latest # 실행할 runner 환경 지정
1111

1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v2
1515

16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v1
18+
with:
19+
dotnet-version: 4.7.x
20+
1621
- name: Build and Test
1722
run: |
1823
cd CSharpTest
@@ -49,4 +54,4 @@ jobs:
4954
- name: Deploy to production
5055
if: startsWith(steps.merge_message.outputs.message, 'Release')
5156
run: |
52-
echo "End All Actions"
57+
echo "End All Actions."

0 commit comments

Comments
 (0)