Skip to content

Commit 81ba322

Browse files
committed
update build
1 parent 0f2fa76 commit 81ba322

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ts_release.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,19 @@ jobs:
9898
- name: Download all artifacts
9999
uses: actions/download-artifact@v4
100100
with:
101-
path: all-dist
101+
path: ./all-dist
102102
merge-multiple: true
103103

104+
- name: Debug - List files
105+
run: |
106+
echo "Listing files to be uploaded:"
107+
ls -R ./all-dist
108+
104109
- name: Create Release
105110
uses: softprops/action-gh-release@v2
111+
if: startsWith(github.ref, 'refs/tags/')
106112
with:
107-
files: all-dist/*
113+
files: ./all-dist/*
114+
generate_release_notes: true
108115
env:
109116
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)