Skip to content

Commit

Permalink
Update CI to run datagen itself
Browse files Browse the repository at this point in the history
  • Loading branch information
drewcassidy committed Apr 27, 2024
1 parent f8c861c commit 4942b03
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,26 @@ jobs:
- name: make gradle wrapper executable
run: chmod +x ./gradlew

- name: datagen
run: ./gradlew runDatagen

- name: build
run: ./gradlew build

- name: capture build artifacts
uses: actions/upload-artifact@v2
- name: upload fabric artifact
uses: actions/upload-artifact@v4
with:
name: Artifacts
path: build/libs/
name: fabric
path: |
fabric/build/libs/*.jar
!**/*shadow*
!**/*sources*
- name: upload forge artifact
uses: actions/upload-artifact@v4
with:
name: forge
path: |
forge/build/libs/*.jar
!**/*shadow*
!**/*sources*

0 comments on commit 4942b03

Please sign in to comment.