We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7f7a75 + ae1378f commit 61f41a3Copy full SHA for 61f41a3
.github/workflows/publish.yml
@@ -118,5 +118,11 @@ jobs:
118
REPO: ${{ github.repository }}
119
run: |
120
cd _output
121
- find . -type f -name "*.zip" -exec echo "Language bundle to upload: {}" \;
122
- find . -type f -name "*.zip" -exec gh release upload "$TAG" {} --repo "$REPO" --clobber \;
+ echo "$TAG" >> _version.txt
+ echo "$REPO" >> _prjname.txt
123
+
124
+ find . -type f -name "*.zip" -print0 | while IFS= read -r -d '' file; do
125
+ echo "Language bundle to upload: $file"
126
+ zip -u "$file" _version.txt _prjname.txt
127
+ gh release upload "$TAG" "$file" --repo "$REPO" --clobber
128
+ done
0 commit comments