Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
62f99e08
Unverified
Commit
62f99e08
authored
Aug 13, 2025
by
li chaoran
Committed by
GitHub
Aug 12, 2025
Browse files
fix: wrong docker hub org name (#9137)
Signed-off-by:
mywaaagh_admin
<
pkwarcraft@gmail.com
>
parent
86a0be65
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
9 deletions
+7
-9
.github/workflows/release-docker-npu-nightly.yaml
.github/workflows/release-docker-npu-nightly.yaml
+3
-3
.github/workflows/release-docker-npu.yaml
.github/workflows/release-docker-npu.yaml
+4
-6
No files found.
.github/workflows/release-docker-npu-nightly.yaml
View file @
62f99e08
...
...
@@ -38,7 +38,7 @@ jobs:
uses
:
docker/metadata-action@v5
with
:
images
:
|
${{ github.repository_owner }}
/sglang
lmsysorg
/sglang
# push with schedule event
# push with workflow_dispatch event
tags
:
|
...
...
@@ -52,7 +52,7 @@ jobs:
# https://github.com/docker/login-action
-
name
:
Log into docker hub
uses
:
docker/login-action@v3
if
:
${{ github.repository
_owner
== 'sgl-project/sglang' && github.event_name != 'pull_request' }}
if
:
${{ github.repository == 'sgl-project/sglang' && github.event_name != 'pull_request' }}
with
:
username
:
${{ secrets.DOCKERHUB_USERNAME }}
password
:
${{ secrets.DOCKERHUB_TOKEN }}
...
...
@@ -69,7 +69,7 @@ jobs:
platforms
:
linux/arm64
labels
:
${{ steps.meta.outputs.labels }}
tags
:
${{ steps.meta.outputs.tags }}
push
:
${{ github.repository
_owner
== 'sgl-project/sglang' && github.event_name != 'pull_request' }}
push
:
${{ github.repository == 'sgl-project/sglang' && github.event_name != 'pull_request' }}
provenance
:
false
build-args
:
|
CANN_VERSION=${{ matrix.cann_version }}
...
...
.github/workflows/release-docker-npu.yaml
View file @
62f99e08
...
...
@@ -33,20 +33,18 @@ jobs:
uses
:
docker/metadata-action@v5
with
:
images
:
|
${{ github.repository_owner }}
/sglang
lmsysorg
/sglang
tags
:
|
type=ref,event=pr
type=ref,event=tag,suffix=-cann${{ matrix.cann_version }}-${{ matrix.device_type }}
flavor
:
|
latest=false
-
name
:
Setup Docker buildx
uses
:
docker/setup-buildx-action@v3
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
-
name
:
Login to Docker Hub
uses
:
docker/login-action@v2
if
:
${{ github.repository
_owner
== 'sgl-project/sglang' && github.event_name != 'pull_request' }}
if
:
${{ github.repository == 'sgl-project/sglang' && github.event_name != 'pull_request' }}
with
:
username
:
${{ secrets.DOCKERHUB_USERNAME }}
password
:
${{ secrets.DOCKERHUB_TOKEN }}
...
...
@@ -55,7 +53,7 @@ jobs:
id
:
get_version
run
:
|
version=$(cat python/sglang/version.py | cut -d'"' -f2)
echo "TAG=
${{ github.repository_owner }}
/sglang:v$version-cann${{ matrix.cann_version }}-${{ matrix.device_type }}" >> $GITHUB_OUTPUT
echo "TAG=
lmsysorg
/sglang:v$version-cann${{ matrix.cann_version }}-${{ matrix.device_type }}" >> $GITHUB_OUTPUT
kernel_tag=$(curl -s https://api.github.com/repos/sgl-project/sgl-kernel-npu/tags | jq -r '.[0].name')
echo "KERNEL_NPU_TAG=${kernel_tag}" >> $GITHUB_OUTPUT
...
...
@@ -69,7 +67,7 @@ jobs:
platforms
:
linux/arm64
labels
:
${{ steps.meta.outputs.labels }}
tags
:
${{ steps.meta.outputs.tags || steps.get_version.outputs.TAG }}
push
:
${{ github.repository
_owner
== 'sgl-project/sglang' && github.event_name != 'pull_request' }}
push
:
${{ github.repository == 'sgl-project/sglang' && github.event_name != 'pull_request' }}
provenance
:
false
build-args
:
|
SGLANG_KERNEL_NPU_TAG=${{ steps.get_version.outputs.KERNEL_NPU_TAG }}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment