File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,20 +41,20 @@ jobs:
41
41
id : corretto-cache
42
42
name : Restore Corretto
43
43
with :
44
- path : ${{ JDK_FILE }}
44
+ path : $JDK_FILE
45
45
key : ${{ runner.os }}-corretto-${{ steps.get-latest-corretto-url.outputs.___URL }}
46
46
47
47
- name : Download AWS Corretto
48
48
if : steps.corretto-cache.outputs.cache-hit != 'true'
49
- run : wget -O ${{ JDK_FILE }} ${{ steps.get-latest-corretto-url.outputs.___URL }}
49
+ run : wget -O $JDK_FILE ${{ steps.get-latest-corretto-url.outputs.___URL }}
50
50
51
51
- name : ☕ Set up JDK 17
52
52
uses : actions/setup-java@v3
53
53
with :
54
54
distribution : jdkfile
55
55
java-version : ' 17'
56
56
architecture : x64
57
- jdkFile : ${{ JDK_FILE }}
57
+ jdkFile : $JDK_FILE
58
58
59
59
- name : Build with Gradle
60
60
run : ./gradlew :mobile:bundleDebug
You can’t perform that action at this time.
0 commit comments