Skip to content

Commit 04f6378

Browse files
committed
Fix GITHUB_RUN_NUMBER
Signed-off-by: Pavel Chekin <[email protected]>
1 parent b8655d5 commit 04f6378

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/wheels-pytorch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
cd ${{ env.NEW_WORKSPACE }}
9191
cd pytorch
9292
$pytorch_version = Get-Content version.txt
93-
$pytorch_version = "$pytorch_version.post${{ env.GITHUB_RUN_NUMBER }}"
93+
$pytorch_version = "$pytorch_version.post$env:GITHUB_RUN_NUMBER"
9494
echo "$pytorch_version" > version.txt
9595
echo "PyTorch version: $pytorch_version"
9696

0 commit comments

Comments
 (0)