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.
1 parent 686a485 commit 3a9121dCopy full SHA for 3a9121d
.github/workflows/build-release.yml
@@ -30,10 +30,10 @@ jobs:
30
set -x
31
ASSETS=()
32
for asset in Assets/*.zip; do
33
- ASSETS+=("-a" "$asset")
+ ASSETS+=("$asset")
34
echo "$asset"
35
done
36
TAG_NAME="${GITHUB_REF##*/}"
37
- gh release edit "${ASSETS[@]}" "{TAG_NAME}"
+ gh release upload "${TAG_NAME}" "${ASSETS[@]}"
38
env:
39
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments