-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[2.0.0] Fixed run workflow taking wrong jar
- Loading branch information
1 parent
e99ba86
commit ce3e13f
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,8 +66,10 @@ jobs: | |
run: ./gradlew build --stacktrace | ||
- name: Create mods dir | ||
run: mkdir -p run/mods | ||
- name: List mod files | ||
run: ls ${{ matrix.version.dir }}/build/libs | ||
- name: Copy mod jar | ||
run: cp ${{ matrix.version.dir }}/build/libs/hmc-specifics-${{ matrix.version.mc }}-*-${{ matrix.version.type }}.jar run/mods | ||
run: cp ${{ matrix.version.dir }}/build/libs/hmc-specifics-${{ matrix.version.mc }}-*-${{ matrix.version.type }}-release.jar run/mods | ||
- name: Run the MC client | ||
uses: 3arthqu4ke/[email protected] | ||
with: | ||
|