We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 778f87c commit 20bfe3cCopy full SHA for 20bfe3c
1 file changed
.github/workflows/publish.yml
@@ -130,11 +130,13 @@ jobs:
130
REPO: ${{ github.repository }}
131
run: |
132
cd _output
133
- echo "_version|$TAG" >> _config.txt
134
- echo "_prjname|$REPO" >> _config.txt
135
136
find . -type f -name "*.zip" -print0 | while IFS= read -r -d '' file; do
137
echo "Language bundle to upload: $file"
138
- zip -u "$file" _config.txt
+ unzip "$file" _config.txt
+ echo "_version|$TAG" >> _config.txt
+ echo "_prjname|$REPO" >> _config.txt
139
+ zip -u -o "$file" _config.txt
140
+ rm _config.txt
141
gh release upload "$TAG" "$file" --repo "$REPO" --clobber
142
done
0 commit comments