This repository was archived by the owner on Jul 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -137,16 +137,18 @@ jobs:
137137 core.setOutput('upload_url', response.data.upload_url)
138138
139139 - name : Create SHA256 checksums for the VSIX packages
140+ working-directory : vsix
140141 run : |
141- for pkg in ./vsix /*.vsix
142+ for pkg in ./** /*.vsix
142143 do
143144 sha_file=$(echo $pkg | sed 's/\.vsix/\.sha256/g')
144145 sha256sum $pkg > $sha_file
145146 done
146147
147148 - name : Upload packages and checksums as EA release assets
149+ working-directory : vsix
148150 run : |
149- for file in ./vsix /*.{vsix,sha256}
151+ for file in ./** /*.{vsix,sha256}
150152 do
151153 asset_name=$(basename $file)
152154 upload_url=$(echo "${{ steps.new_release.outputs.upload_url }}" | sed "s/{?name,label}/?name=$asset_name/g")
Original file line number Diff line number Diff line change @@ -115,15 +115,16 @@ jobs:
115115 - name : Create SHA256 checksums for the VSIX packages
116116 working-directory : vsix
117117 run : |
118- for pkg in ./vsix /*.vsix
118+ for pkg in ./** /*.vsix
119119 do
120120 sha_file=$(echo $pkg | sed 's/\.vsix/\.sha256/g')
121121 sha256sum $pkg > $sha_file
122122 done
123123
124124 - name : Upload packages and checksums as EA release assets
125+ working-directory : vsix
125126 run : |
126- for file in ./vsix /*.{vsix,sha256}
127+ for file in ./** /*.{vsix,sha256}
127128 do
128129 asset_name=$(basename $file)
129130 upload_url=$(echo "${{ steps.new_release.outputs.upload_url }}" | sed "s/{?name,label}/?name=$asset_name/g")
You can’t perform that action at this time.
0 commit comments