Skip to content

Commit 3dc4048

Browse files
authored
Update publish.yml : Bugfix - language not written
1 parent da31cca commit 3dc4048

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,12 @@ 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"
136+
unzip "$file" _config.txt
137+
echo "_version|$TAG" >> _config.txt
138+
echo "_prjname|$REPO" >> _config.txt
138139
zip -u "$file" _config.txt
139140
gh release upload "$TAG" "$file" --repo "$REPO" --clobber
140141
done

0 commit comments

Comments
 (0)