diff options
| author | 2025-12-30 20:58:08 +0800 | |
|---|---|---|
| committer | 2025-12-30 20:58:08 +0800 | |
| commit | 046eda69af8ac163c4337eb63a544685716d97c3 (patch) | |
| tree | c9dee8148f3e1f1896a423e964f9d586f97247e9 /.github | |
| parent | 6922fcea0d567acfaf798c462f526fe43b72d351 (diff) | |
| download | base-model-046eda69af8ac163c4337eb63a544685716d97c3.tar.gz base-model-046eda69af8ac163c4337eb63a544685716d97c3.zip | |
feat: Add debug step for artifact structure and fix model zip path in release
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/publish.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bdc6cfc..9150d48 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -134,6 +134,11 @@ jobs: path: artifacts/ merge-multiple: true + - name: Debug artifact structure + run: | + echo "π Artifact directory tree:" + tree artifacts/ || ls -laR artifacts/ + - name: Create Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -188,7 +193,7 @@ jobs: --title "π ${VERSION}" gh release upload "${VERSION}" \ artifacts/dist/* \ - artifacts/model.zip \ + artifacts/model-zip/model.zip \ --repo "${{ github.repository }}" --clobber else echo "β¨ εε»Ίζ° release ${VERSION}..." @@ -197,7 +202,7 @@ jobs: --notes-file release_notes.md \ --title "π ${VERSION}" \ artifacts/dist/* \ - artifacts/model.zip + artifacts/model-zip/model.zip fi - name: Commit CHANGELOG.md |
