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 a4481a0 commit 2e731c5Copy full SHA for 2e731c5
.github/workflows/publish.yml
@@ -46,7 +46,16 @@ jobs:
46
- name: Process build output - Linux
47
if: ${{ startsWith(matrix.arch_name, 'linux') }}
48
working-directory: bin
49
- run: chmod +x ccomc
+ run: |
50
+ mv ./src/ccomc ccomc
51
+ chmod +x ccomc
52
+
53
+ - name: Process build output - Windows
54
+ if: ${{ startsWith(matrix.arch_name, 'windows') }}
55
+ working-directory: bin
56
57
+ mv ./src/ccomc.exe ccomc.exe
58
+ chmod +x ccomc.exe
59
60
- name: Upload artifact
61
uses: actions/upload-artifact@v4
0 commit comments