Skip to content

Commit b5deeb6

Browse files
committed
it's 64 not 32
1 parent f705643 commit b5deeb6

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/c-cpp.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,32 +23,32 @@ jobs:
2323
# Rename Artifact
2424
- if: startsWith(matrix.os,'ubuntu')
2525
name: Rename binary
26-
run: mv bin/PassCoder2 bin/PassCoder2-linux-x86
26+
run: mv bin/PassCoder2 bin/PassCoder2-linux-x64
2727
- if: startsWith(matrix.os, 'macOS')
2828
name: Rename binary
29-
run: mv bin/PassCoder2 bin/PassCoder2-macos-x86
29+
run: mv bin/PassCoder2 bin/PassCoder2-macos-x64
3030
- if: startsWith(matrix.os, 'windows')
3131
name: Rename binary
32-
run: mv bin/Release/PassCoder2.exe bin/Release/PassCoder2-windows-x86.exe
32+
run: mv bin/Release/PassCoder2.exe bin/Release/PassCoder2-windows-x64.exe
3333
# Uploading Artifact
3434
- if: startsWith(matrix.os,'ubuntu')
3535
name: Upload binary
3636
uses: actions/upload-artifact@v2
3737
with:
38-
name: PassCoder2-linux-x86
39-
path: bin/PassCoder2-linux-x86
38+
name: PassCoder2-linux-x64
39+
path: bin/PassCoder2-linux-x64
4040
- if: startsWith(matrix.os, 'macOS')
4141
name: Upload binary
4242
uses: actions/upload-artifact@v2
4343
with:
44-
name: PassCoder2-macos-x86
45-
path: bin/PassCoder2-macos-x86
44+
name: PassCoder2-macos-x64
45+
path: bin/PassCoder2-macos-x64
4646
- if: startsWith(matrix.os, 'windows')
4747
name: Upload binary
4848
uses: actions/upload-artifact@v2
4949
with:
50-
name: PassCoder2-windows-x86
51-
path: bin/Release/PassCoder2-windows-x86.exe
50+
name: PassCoder2-windows-x64
51+
path: bin/Release/PassCoder2-windows-x64.exe
5252

5353
release-upload:
5454
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
@@ -60,18 +60,18 @@ jobs:
6060
- uses: actions/download-artifact@master
6161
name: Download Artifact Windows
6262
with:
63-
name: PassCoder2-windows-x86
64-
path: PassCoder2-windows-x86
63+
name: PassCoder2-windows-x64
64+
path: PassCoder2-windows-x64
6565
- uses: actions/download-artifact@master
6666
name: Download Artifact Linux
6767
with:
68-
name: PassCoder2-linux-x86
69-
path: PassCoder2-linux-x86
68+
name: PassCoder2-linux-x64
69+
path: PassCoder2-linux-x64
7070
- uses: actions/download-artifact@master
7171
name: Download Artifact MacOS
7272
with:
73-
name: PassCoder2-macos-x86
74-
path: PassCoder2-macos-x86
73+
name: PassCoder2-macos-x64
74+
path: PassCoder2-macos-x64
7575
- name: Create release
7676
uses: Roang-zero1/github-create-release-action@master
7777
env:
@@ -80,8 +80,8 @@ jobs:
8080
uses: Roang-zero1/github-upload-release-artifacts-action@master
8181
with:
8282
args:
83-
PassCoder2-windows-x86
84-
PassCoder2-linux-x86
85-
PassCoder2-macos-x86
83+
PassCoder2-windows-x64
84+
PassCoder2-linux-x64
85+
PassCoder2-macos-x64
8686
env:
8787
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)