Skip to content

Commit 0addd95

Browse files
committed
chore: fix graalvm bgv dump file name
1 parent 586128d commit 0addd95

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/graalvm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
with:
8686
name: ${{ steps.native-build.outputs.native_image_dashboard }}
8787
path: |
88-
build/${{ steps.native-build.outputs.native_image_dashboard }}.bgv
88+
build/${{ steps.native-build.outputs.native_image_dashboard }}
8989
if-no-files-found: error
9090

9191

gradle/build-logic/common-plugins/src/main/kotlin/plugins/graalvm.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ tasks {
163163
setOutput("version", project.version)
164164
setOutput("native_image_name", archiveFileName.get())
165165
setOutput("native_image_path", archiveFile.get().asFile.absolutePath)
166-
setOutput("native_image_dashboard", niDashBoardDump)
166+
setOutput("native_image_dashboard", "$niDashBoardDump.bgv")
167167
}
168168

169169
val binFile = archiveFile.get().asFile

0 commit comments

Comments
 (0)