Skip to content

Commit 15a5090

Browse files
committed
ci: Fix release job
1 parent d59f0b8 commit 15a5090

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,9 @@ jobs:
3838
- name: Assemble Plugin
3939
uses: eskatos/gradle-command-action@v1
4040
with:
41-
arguments: assemble
41+
arguments: :mimic-bukkit:assemble
4242
- name: Copy plugin to root directory
43-
run: |
44-
ls -la ./mimic-bukkit/build/libs/
45-
cp ./mimic-bukkit/build/libs/*-all.jar Mimic.jar
43+
run: cp ./mimic-bukkit/build/libs/*-all.jar Mimic.jar
4644
- name: Create Release
4745
id: create-release
4846
uses: actions/create-release@v1

mimic-bukkit/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ tasks.shadowJar {
4545
relocate("co.aikar.commands", "${group}.shade.acf")
4646
}
4747

48-
tasks.named("build") {
48+
tasks.named("assemble") {
4949
dependsOn(tasks.shadowJar)
5050
}

0 commit comments

Comments
 (0)