diff options
| author | 2025-12-30 21:01:59 +0800 | |
|---|---|---|
| committer | 2025-12-30 21:01:59 +0800 | |
| commit | e48db0fa0555886f23dd384e21cd16417dff4f7d (patch) | |
| tree | 7eb0432df3c3938659ce7313c595df9d21e0a760 | |
| parent | 046eda69af8ac163c4337eb63a544685716d97c3 (diff) | |
| download | base-model-e48db0fa0555886f23dd384e21cd16417dff4f7d.tar.gz base-model-e48db0fa0555886f23dd384e21cd16417dff4f7d.zip | |
fix: Simplify artifact upload paths in GitHub release workflow
| -rw-r--r-- | .github/workflows/publish.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9150d48..f80af6e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -192,8 +192,7 @@ jobs: --notes-file release_notes.md \ --title "π ${VERSION}" gh release upload "${VERSION}" \ - artifacts/dist/* \ - artifacts/model-zip/model.zip \ + artifacts/* \ --repo "${{ github.repository }}" --clobber else echo "β¨ εε»Ίζ° release ${VERSION}..." @@ -201,8 +200,7 @@ jobs: --repo "${{ github.repository }}" \ --notes-file release_notes.md \ --title "π ${VERSION}" \ - artifacts/dist/* \ - artifacts/model-zip/model.zip + artifacts/* fi - name: Commit CHANGELOG.md |
