Skip to content

Commit fb51907

Browse files
committed
2 parents 0b98527 + a02ed45 commit fb51907

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/publish.yml

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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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

0 commit comments

Comments
 (0)