Skip to content
This repository was archived by the owner on Jul 24, 2025. It is now read-only.

Commit d6b3518

Browse files
authored
ci: fixed breaking changes in new artifiact download action3 (#87)
Signed-off-by: Tomer Figenblat <[email protected]>
1 parent 13a5edd commit d6b3518

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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")

.github/workflows/stage.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)