|
35 | 35 | exclude: |
36 | 36 | - os: windows-latest |
37 | 37 | c_compiler: clang |
38 | | - - os: windows-latest |
39 | | - arch: aarch64 |
40 | 38 | - os: ubuntu-latest |
41 | 39 | c_compiler: cl |
42 | 40 | - os: macos-latest |
@@ -71,42 +69,51 @@ jobs: |
71 | 69 | - name: Build Patcher. |
72 | 70 | run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} --target DualBootKernelPatcher |
73 | 71 |
|
74 | | - - name: Upload Windows x64 Artifact |
| 72 | + - name: Upload Windows X86_64 Artifact |
75 | 73 | uses: actions/upload-artifact@v4 |
76 | 74 | if: ${{ matrix.arch == 'x86_64' && matrix.os == 'windows-latest' }} |
77 | 75 | with: |
78 | | - name: DualBootKernelPatcher-Windows-x64 |
| 76 | + name: DualBootKernelPatcher-Windows-X86_64 |
79 | 77 | path: | |
80 | 78 | ${{ steps.strings.outputs.build-output-dir }}/**/DualBootKernelPatcher.exe |
81 | 79 | ${{ steps.strings.outputs.build-output-dir }}/**/DualBootKernelRemover.exe |
82 | 80 |
|
83 | | - - name: Upload Linux x64 Artifact |
| 81 | + - name: Upload Linux X86_64 Artifact |
84 | 82 | uses: actions/upload-artifact@v4 |
85 | 83 | if: ${{ matrix.arch == 'x86_64' && matrix.os == 'ubuntu-latest' }} |
86 | 84 | with: |
87 | | - name: DualBootKernelPatcher-Linux-x64 |
| 85 | + name: DualBootKernelPatcher-Linux-X86_64 |
88 | 86 | path: | |
89 | 87 | ${{ steps.strings.outputs.build-output-dir }}/DualBootKernelPatcher |
90 | 88 | ${{ steps.strings.outputs.build-output-dir }}/DualBootKernelRemover |
91 | 89 | |
92 | | - - name: Upload MacOS x64 Artifact |
| 90 | + - name: Upload MacOS X86_64 Artifact |
93 | 91 | uses: actions/upload-artifact@v4 |
94 | 92 | if: ${{ matrix.arch == 'x86_64' && matrix.os == 'macos-latest' }} |
95 | 93 | with: |
96 | | - name: DualBootKernelPatcher-MacOS-x64 |
| 94 | + name: DualBootKernelPatcher-MacOS-X86_64 |
97 | 95 | path: | |
98 | 96 | ${{ steps.strings.outputs.build-output-dir }}/DualBootKernelPatcher |
99 | 97 | ${{ steps.strings.outputs.build-output-dir }}/DualBootKernelRemover |
100 | 98 |
|
101 | | - - name: Upload Linux arm64 Artifact |
| 99 | + - name: Upload Linux ARM64 Artifact |
102 | 100 | uses: actions/upload-artifact@v4 |
103 | 101 | if: ${{ matrix.arch == 'aarch64' && matrix.os == 'ubuntu-latest' }} |
104 | 102 | with: |
105 | | - name: DualBootKernelPatcher-Linux-arm64 |
| 103 | + name: DualBootKernelPatcher-Linux-ARM64 |
106 | 104 | path: | |
107 | 105 | ${{ steps.strings.outputs.build-output-dir }}/DualBootKernelPatcher |
108 | 106 | ${{ steps.strings.outputs.build-output-dir }}/DualBootKernelRemover |
109 | 107 |
|
| 108 | + - name: Upload Windows ARM64 Artifact |
| 109 | + uses: actions/upload-artifact@v4 |
| 110 | + if: ${{ matrix.arch == 'aarch64' && matrix.os == 'windows-latest' }} |
| 111 | + with: |
| 112 | + name: DualBootKernelPatcher-Windows-ARM64 |
| 113 | + path: | |
| 114 | + ${{ steps.strings.outputs.build-output-dir }}/**/DualBootKernelPatcher.exe |
| 115 | + ${{ steps.strings.outputs.build-output-dir }}/**/DualBootKernelRemover.exe |
| 116 | +
|
110 | 117 | - name: Build shellcodes. |
111 | 118 | if: ${{ matrix.arch == 'aarch64' && matrix.os == 'ubuntu-latest' }} |
112 | 119 | run: | |
|
0 commit comments