Skip to content

Commit 5b9bf77

Browse files
committed
last
1 parent c91cef8 commit 5b9bf77

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/build-release.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
4242
- name: Build C# project
4343
run: |
44-
dotnet new console -o assignment_4/csharp --force
44+
dotnet new console -o assignment_4/csharp --force --framework net8.0
45+
cp assignment_4/csharp_src/*.cs assignment_4/csharp/
4546
dotnet build assignment_4/csharp -o assignment_4/output_csharp
4647
4748
- name: Build Kotlin project
@@ -66,7 +67,7 @@ jobs:
6667

6768
release:
6869
needs: build
69-
if: github.event_name == 'push' # 수동 릴리즈 제거!
70+
if: github.event_name == 'push'
7071
runs-on: ubuntu-latest
7172
steps:
7273
- name: Download artifact
@@ -80,7 +81,7 @@ jobs:
8081
tag_name: auto-${{ github.run_number }}
8182
name: "Auto Release ${{ github.run_number }}"
8283
body: "Automated release"
83-
files: release_artifacts.zip # ⬅️ 경로 수정! 폴더명 제거
84+
files: release_artifacts.zip
8485
env:
8586
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8687

0 commit comments

Comments
 (0)