We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f34659 commit b751c7bCopy full SHA for b751c7b
1 file changed
.github/workflows/release.yml
@@ -28,7 +28,8 @@ jobs:
28
msbuild /p:Configuration=Release /p:Platform=Win32 Injector.sln
29
30
- name: Rename 32bit build executable
31
- run: ren bin/Release/x32/Injector.exe bin/Release/x32/Injector_x32.exe
+ run: ren Injector.exe Injector_x32.exe
32
+ working-directory: bin/Release/x32
33
34
- name: Release
35
uses: softprops/action-gh-release@v1
@@ -37,4 +38,4 @@ jobs:
37
38
draft: true
39
files: |
40
bin/Release/x64/Injector.exe
- bin/Release/x64/Injector_x32.exe
41
+ bin/Release/x32/Injector_x32.exe
0 commit comments