Skip to content

Commit c91cef8

Browse files
committed
last
1 parent fa77ffd commit c91cef8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up .NET (for C#) # C#을 위해서 환경 세팅
2121
uses: actions/setup-dotnet@v3
2222
with:
23-
dotnet-version: '7.0.x'
23+
dotnet-version: '8.0.x'
2424

2525
- name: Set up Java (for Kotlin) # Kotlin을 위해서 환경 세팅
2626
uses: actions/setup-java@v3
@@ -66,7 +66,7 @@ jobs:
6666

6767
release:
6868
needs: build
69-
if: github.event_name == 'push'
69+
if: github.event_name == 'push' # 수동 릴리즈 제거!
7070
runs-on: ubuntu-latest
7171
steps:
7272
- name: Download artifact
@@ -80,7 +80,7 @@ jobs:
8080
tag_name: auto-${{ github.run_number }}
8181
name: "Auto Release ${{ github.run_number }}"
8282
body: "Automated release"
83-
files: release_artifacts.zip
83+
files: release_artifacts.zip # ⬅️ 경로 수정! 폴더명 제거
8484
env:
8585
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8686

0 commit comments

Comments
 (0)