We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d478d4 commit 333e110Copy full SHA for 333e110
.github/workflows/android.yml
@@ -9,26 +9,20 @@ on:
9
env:
10
JDK_VERSION: 17
11
JDK_DISTRIBUTION: temurin
12
- DAY_OF_WEEK: Monday
13
14
jobs:
15
build:
16
name: Build App
17
runs-on: ubuntu-latest
18
19
steps:
20
- - name: "Say Hello Mona it's Monday"
21
- run: echo "Hello $First_Name. Today is $DAY_OF_WEEK!"
22
- env:
23
- First_Name: Mona
24
-
25
- uses: actions/checkout@v4
26
27
- name: Setup JDK $JDK_VERSION
28
uses: actions/setup-java@v4
29
with:
30
- java-version: $JDK_VERSION
31
- distribution: $JDK_DISTRIBUTION
+ java-version: '$JDK_VERSION'
+ distribution: '$JDK_DISTRIBUTION'
32
cache: gradle
33
34
- name: Setup Gradle
0 commit comments