Skip to content

Commit

Permalink
Restructure build test
Browse files Browse the repository at this point in the history
Captures Common artifacts and calls only build, instead of sub:build
  • Loading branch information
Griefed committed Nov 11, 2023
1 parent 4133db1 commit a98a99e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,21 @@ jobs:
- name: Update block and item implementations
run: ./gradlew clean blockAndItemCodeGen

- name: Build Fabric
run: ./gradlew :Fabric:build
- name: Build
run: ./gradlew build

- name: Capture Common build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: Common/build/libs/

- name: Capture Fabric build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: Fabric/build/libs/

- name: Build Forge
run: ./gradlew :Forge:build
- name: Capture Forge build artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit a98a99e

Please sign in to comment.