diff options
Diffstat (limited to '.github/workflows')
| -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 |
