Rename files in sgl kernel to avoid nested folder structure (#4213)

Co-authored-by: zhyncs <me@zhyncs.com>
This commit is contained in:
Lianmin Zheng
2025-03-08 22:54:51 -08:00
committed by GitHub
parent ee132a4515
commit 8abf74e3c9
47 changed files with 184 additions and 199 deletions

View File

@@ -5,7 +5,7 @@ on:
branches:
- main
paths:
- sgl-kernel/src/sgl-kernel/version.py
- sgl-kernel/python/sgl_kernel/version.py
workflow_dispatch:
concurrency:

View File

@@ -9,7 +9,7 @@ on:
branches:
- main
paths:
- sgl-kernel/src/sgl-kernel/version.py
- sgl-kernel/python/sgl_kernel/version.py
jobs:
build-wheels:
@@ -59,7 +59,7 @@ jobs:
id: set_tag_name
run: |
if [ -z "${{ inputs.tag_name }}" ]; then
TAG_NAME="v$(cat sgl-kernel/src/sgl-kernel/version.py | cut -d'"' -f2)"
TAG_NAME="v$(cat sgl-kernel/python/sgl_kernel/version.py | cut -d'"' -f2)"
echo "tag_name=$TAG_NAME" >> $GITHUB_OUTPUT
else
echo "tag_name=${{ inputs.tag_name }}" >> $GITHUB_OUTPUT