Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MeAlam1 authored Aug 30, 2024
1 parent c6c72fd commit 041cbe5
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,28 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Grant execute permission for Gradle wrapper
run: chmod +x gradlew
- name: Grant execute permission for Gradle wrappers
run: |
chmod +x NeoForge/gradlew
chmod +x Forge/gradlew
- name: Build for NeoForge
run: NeoForge/gradlew build

- name: Run Build
run: ./gradlew build
- name: Build for Forge
run: Forge/gradlew build

- name: Run Client
run: ./gradlew runClient
- name: runClient for NeoForge
run: NeoForge/gradlew runClient
continue-on-error: true

- name: Run Additional Tasks
run: |
./gradlew jar
- name: runClient for Forge
run: Forge/gradlew runClient
continue-on-error: true

- name: Run Additional Tasks for NeoForge
run: NeoForge/gradlew jar

- name: Run Additional Tasks for Forge
run: Forge/gradlew jar

0 comments on commit 041cbe5

Please sign in to comment.