File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 55
55
- name : Get SHA sum (HASH) of relevant files
56
56
id : hash
57
57
run : |
58
- git config --global --add safe.directory /__w/${{ env.repository }}/${{ env.repository }}
58
+ git config --global --add safe.directory /__w/${{ env.REPOSITORY }}/${{ env.REPOSITORY }}
59
59
echo "Get SHA sum (HASH) of relevant files"
60
60
HASH="$(git ls-tree ${{ env.SHA }} -- ${{ env.RELEVANT_FILES }} | sha1sum | cut -d' ' -f1)"
61
61
echo "BUILD HASH FOR THE CODEBASE IS: $HASH"
@@ -124,7 +124,7 @@ jobs:
124
124
- name : Get SHA sum (HASH) of relevant files
125
125
id : hash
126
126
run : |
127
- git config --global --add safe.directory /__w/${{ env.repository }}/${{ env.repository }}
127
+ git config --global --add safe.directory /__w/${{ env.REPOSITORY }}/${{ env.REPOSITORY }}
128
128
echo "Get SHA sum (HASH) of relevant files"
129
129
HASH="$(git ls-tree ${{ env.SHA }} -- ${{ env.RELEVANT_FILES }} | sha1sum | cut -d' ' -f1)"
130
130
echo "BUILD HASH FOR THE CODEBASE IS: $HASH"
Original file line number Diff line number Diff line change 44
44
- name : Check for CI successes
45
45
uses : runs-on/cache/restore@v4
46
46
with :
47
- key : ${{ runner.os }}-${{ env.repository }}-approval-${{ steps.hash.outputs.HASH }}
47
+ key : ${{ runner.os }}-${{ env.REPOSITORY }}-approval-${{ steps.hash.outputs.HASH }}
48
48
path : approval.txt
49
49
fail-on-cache-miss : true
50
50
- name : Setup Elixir
You can’t perform that action at this time.
0 commit comments