Skip to content

Commit 59f5cdc

Browse files
committed
test
1 parent da36c13 commit 59f5cdc

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/scripts/build-linux-release-artifacts.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ python -m auditwheel repair \
4242
--plat manylinux_2_34_x86_64 \
4343
/opt/torch-tensorrt-builds/torch_tensorrt-*-${PY_BUILD_CODE}-linux_x86_64.whl
4444

45+
if [[ ! -d dist ]]; then
46+
mkdir dist
47+
fi
4548
cp wheelhouse/torch_tensorrt*x86_64.whl dist/
4649

4750
CUDA_VERSION=$(python -c "import versions; versions.cuda_version()")

.github/workflows/linux-release-artifacts.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,12 @@ jobs:
146146
with:
147147
repository: ${{ inputs.repository }}
148148
script: exec_script
149+
- name: Upload release artifacts to GitHub
150+
continue-on-error: true
151+
uses: actions/upload-artifact@v3
152+
with:
153+
name: release_${{ env.ARTIFACT_NAME }}
154+
path: ${{ inputs.repository }}/dist/
149155
# - name: Surface failing tests
150156
# if: always()
151157
# uses: pmeier/[email protected]

0 commit comments

Comments
 (0)