We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa77ffd commit c91cef8Copy full SHA for c91cef8
.github/workflows/build-release.yaml
@@ -20,7 +20,7 @@ jobs:
20
- name: Set up .NET (for C#) # C#을 위해서 환경 세팅
21
uses: actions/setup-dotnet@v3
22
with:
23
- dotnet-version: '7.0.x'
+ dotnet-version: '8.0.x'
24
25
- name: Set up Java (for Kotlin) # Kotlin을 위해서 환경 세팅
26
uses: actions/setup-java@v3
@@ -66,7 +66,7 @@ jobs:
66
67
release:
68
needs: build
69
- if: github.event_name == 'push'
+ if: github.event_name == 'push' # 수동 릴리즈 제거!
70
runs-on: ubuntu-latest
71
steps:
72
- name: Download artifact
@@ -80,7 +80,7 @@ jobs:
80
tag_name: auto-${{ github.run_number }}
81
name: "Auto Release ${{ github.run_number }}"
82
body: "Automated release"
83
- files: release_artifacts.zip
+ files: release_artifacts.zip # ⬅️ 경로 수정! 폴더명 제거
84
env:
85
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
86
0 commit comments