Skip to content

Commit 7086643

Browse files
committed
fix workflow
1 parent 0877f89 commit 7086643

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

.github/workflows/gradle.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,16 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
# 1. Клонируем репозиторий
1514
- name: Checkout repository
1615
uses: actions/checkout@v3
1716

18-
# 2. Ставим JDK 17
1917
- name: Set up JDK 17
2018
uses: actions/setup-java@v3
2119
with:
2220
java-version: '17'
2321
distribution: 'temurin'
2422
cache: gradle
2523

26-
# 3. Кэшируем Gradle и зависимости (ускоряет повторные сборки)
2724
- name: Cache Gradle
2825
uses: actions/cache@v3
2926
with:
@@ -34,11 +31,9 @@ jobs:
3431
restore-keys: |
3532
gradle-${{ runner.os }}-
3633
37-
# 4. Сборка проекта
3834
- name: Build mod
3935
run: ./gradlew build --no-daemon --stacktrace
4036

41-
# 5. Загружаем собранные JAR как артефакт
4237
- name: Upload artifact
4338
uses: actions/upload-artifact@v3
4439
with:

0 commit comments

Comments
 (0)