Merge pull request #108 from svc-design/j4htv5-codex/fix-package-not-found-error

Add GitHub release step
This commit is contained in:
shenlan 2025-06-27 01:19:31 +08:00 committed by GitHub
commit 307b18c03c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,9 +14,23 @@ jobs:
run: |
bash scripts/create-gpu-k8s-offline-package.sh
- name: Prepare release artifacts
run: |
mkdir -p release-artifacts
mv gpu_k8s_offline_packages.tar.gz release-artifacts/
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: gpu_k8s_offline_packages
path: gpu_k8s_offline_packages.tar.gz
path: release-artifacts/gpu_k8s_offline_packages.tar.gz
- name: Upload to GitHub Release
uses: softprops/action-gh-release@v1
with:
tag_name: daily-${{ github.run_number }}
name: Daily Build ${{ github.run_number }}
files: release-artifacts/gpu_k8s_offline_packages.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}