Skip to content

Commit 2e731c5

Browse files
committed
Fix release workflow
1 parent a4481a0 commit 2e731c5

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,16 @@ jobs:
4646
- name: Process build output - Linux
4747
if: ${{ startsWith(matrix.arch_name, 'linux') }}
4848
working-directory: bin
49-
run: chmod +x ccomc
49+
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+
run: |
57+
mv ./src/ccomc.exe ccomc.exe
58+
chmod +x ccomc.exe
5059
5160
- name: Upload artifact
5261
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)