Skip to content

Commit 4b8997d

Browse files
committed
ci: make sure build/compile step occurs in dedicated directory
1 parent b5019b8 commit 4b8997d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525
- name: Upload Linux binaries to release
2626
uses: JasonEtco/upload-to-release@master
2727
with:
28-
args: 'cwc-linux application/x-executable'
28+
args: 'dist/cwc-linux application/x-executable'
2929
- name: Upload macOS Intel binaries to release
3030
uses: JasonEtco/upload-to-release@master
3131
with:
32-
args: 'cwc-apple-intel application/x-mach-binary'
32+
args: 'dist/cwc-apple-intel application/x-mach-binary'
3333
- name: Upload macOS ARM binaries to release
3434
uses: JasonEtco/upload-to-release@master
3535
with:
3636
args: 'cwc-apple-arm application/x-mach-binary'
3737
- name: Upload Windows binaries to release
3838
uses: JasonEtco/upload-to-release@master
3939
with:
40-
args: 'cwc-windows.exe application/vnd.microsoft.portable-executable'
40+
args: 'dist/cwc-windows.exe application/vnd.microsoft.portable-executable'

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
.DS_Store
22
cov_profile/
33
*.lcov
4+
dist/**/*
5+
!dist/.gitkeep

dist/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)