Skip to content

Commit d4b9535

Browse files
author
TheSnoozer
committed
correct PATHs once again...
1 parent 4242f36 commit d4b9535

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/default-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,20 +72,20 @@ jobs:
7272
with:
7373
submodules: recursive
7474
repository: git-commit-id/git-commit-id-gradle-debugging
75-
path: ${{ env.TEMP_DIR}}
75+
path: ${{env.TEMP_DIR}}
7676
- name: Setup Gradle ${{ matrix.gradle_version }}
7777
run: |
78-
cd ${{ env.TEMP_DIR}}
79-
./gradle wrapper --gradle-version ${{ matrix.gradle_version }} --distribution-type bin
78+
cd "${{env.TEMP_DIR}}"
79+
./gradlew wrapper --gradle-version ${{ matrix.gradle_version }} --distribution-type bin
8080
- name: Verify Setup of Gradle ${{ matrix.gradle_version }}
8181
run: |
82-
cd ${{ env.TEMP_DIR}}
82+
cd "${{env.TEMP_DIR}}"
8383
./gradlew -version
8484
- name: Run the local testversion with Gradle
8585
run: |
86-
cd ${{ env.TEMP_DIR}}
86+
cd "${{env.TEMP_DIR}}"
8787
./gradlew clean build --rerun-tasks
8888
- name: Validate if the testversion has produced the desired output
89-
run: /bin/bash -c '[[ -f ${{ env.TEMP_DIR}}/build/git.properties ]] && cat ${{ env.TEMP_DIR}}/build/git.properties || exit 1;'
89+
run: /bin/bash -c '[[ -f "${{env.TEMP_DIR}}"/build/git.properties ]] && cat "${{env.TEMP_DIR}}"/build/git.properties || exit 1;'
9090
- name: Cleanup TEMP_DIR
91-
run: rm -rf ${{ env.TEMP_DIR}}
91+
run: rm -rf "${{env.TEMP_DIR}}"

0 commit comments

Comments
 (0)