Skip to content

Commit e16be69

Browse files
committed
[ci] Quote the github.event.number which can be empty when it's not a PR.
This should fix our cache upload problems on the main branch.
1 parent 5225d17 commit e16be69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ jobs:
266266
#FIXME: CLING AND LLVM HASH currently hardcoded until windows equivalent of unix commands
267267
#can be found
268268
mkdir ./pr
269-
echo ${{ github.event.number }} > ./pr/NR
269+
echo "${{ github.event.number }}" > ./pr/NR
270270
echo ${{ github.repository }} > ./pr/REPO
271271
272272
if ( "${{ matrix.cling }}" -imatch "On" )

0 commit comments

Comments
 (0)