We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5059eb9 commit 496cceeCopy full SHA for 496ccee
.github/workflows/release.yml
@@ -35,8 +35,7 @@ jobs:
35
run: |
36
tag=$(git describe --tags --abbrev=0)
37
echo "Creating release for tag $tag"
38
- ls .
39
- ls a10y-linux-x86_64/dist
40
- ls a10y-win.exe/dist
41
- ls a10y-macos.exe/dist
+ mv a10y-linux-x86_64/dist/a10y . && rm -rf a10y-linux-x86_64 && mv a10y a10y-linux-x86_64
+ mv a10y-win.exe/dist/a10y.exe . && rm -rf a10y-win.exe && mv a10y.exe a10y-win.exe
+ mv a10y-macos.exe/dist/a10y . && rm -rf a10y-macos.exe && mv a10y a10y-macos.exe
42
gh release create "$tag" a10y-linux-x86_64 a10y-win.exe a10y-macos.exe
0 commit comments