We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da31cca commit 3dc4048Copy full SHA for 3dc4048
.github/workflows/publish.yml
@@ -130,11 +130,12 @@ 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"
+ unzip "$file" _config.txt
+ echo "_version|$TAG" >> _config.txt
138
+ echo "_prjname|$REPO" >> _config.txt
139
zip -u "$file" _config.txt
140
gh release upload "$TAG" "$file" --repo "$REPO" --clobber
141
done
0 commit comments