File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -130,11 +130,13 @@ jobs:
130130 REPO : ${{ github.repository }}
131131 run : |
132132 cd _output
133- echo "_version|$TAG" >> _config.txt
134- echo "_prjname|$REPO" >> _config.txt
135133
136134 find . -type f -name "*.zip" -print0 | while IFS= read -r -d '' file; do
137135 echo "Language bundle to upload: $file"
138- zip -u "$file" _config.txt
136+ unzip "$file" _config.txt
137+ echo "_version|$TAG" >> _config.txt
138+ echo "_prjname|$REPO" >> _config.txt
139+ zip -u -o "$file" _config.txt
140+ rm _config.txt
139141 gh release upload "$TAG" "$file" --repo "$REPO" --clobber
140142 done
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 20250610
4+ - no changes in text
5+ - test deployment with new pipeline
6+
37## 20250609
48- CZ, EN : Added browser standard shortcuts with function explanation
59
You can’t perform that action at this time.
0 commit comments