Skip to content

Commit 92a47bc

Browse files
committedOct 17, 2023
8315062: [GHA] get-bootjdk action should return the abolute path
Backport-of: 99ea8bf2b962011e57d02a93217d65d7259e8f80
1 parent fbc8bed commit 92a47bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.github/actions/get-bootjdk/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -104,6 +104,6 @@ runs:
104104
- name: 'Export path to where BootJDK is installed'
105105
id: path-name
106106
run: |
107-
# Export the path
108-
echo 'path=bootjdk/jdk' >> $GITHUB_OUTPUT
107+
# Export the absolute path
108+
echo "path=`pwd`/bootjdk/jdk" >> $GITHUB_OUTPUT
109109
shell: bash

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Oct 17, 2023

@openjdk-notifier[bot]
Please sign in to comment.