We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a400d0f commit f3945b9Copy full SHA for f3945b9
.github/workflows/linux_cuda_wheel.yaml
@@ -66,9 +66,13 @@ jobs:
66
if: ${{ always() }}
67
needs: build
68
steps:
69
+ - name: Setup env vars
70
+ run: |
71
+ cuda_version_without_periods=$(echo "${{ matrix.cuda-version }}" | sed 's/\.//g')
72
+ echo cuda_version_without_periods=${cuda_version_without_periods} >> $GITHUB_ENV
73
- uses: actions/download-artifact@v3
74
with:
- name: pytorch_torchcodec__${{ matrix.python-version }}_cu${{ matrix.cuda-version }}_x86_64
75
+ name: pytorch_torchcodec__${{ matrix.python-version }}_cu${{ env.cuda_version_without_periods }}_x86_64
76
path: pytorch/torchcodec/dist/
77
- name: Setup conda env
78
uses: conda-incubator/setup-miniconda@v2
0 commit comments