File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -108,20 +108,22 @@ jobs:
108
108
env :
109
109
LLVM_SYS_181_PREFIX : /home/linuxbrew/.linuxbrew/opt/llvm@18
110
110
zstd_DIR : /home/linuxbrew/.linuxbrew/opt/zstd
111
- - name : Archive Build Result
111
+ - name : Archive Build Result (Windows)
112
112
if : ${{ matrix.os == 'windows-latest' }}
113
113
114
114
with :
115
115
command : c
116
- files : target/x86_64-pc-windows-gnu/release/adept.exe
117
- outPath : build-${{ matrix.os }}.tar.gz
118
- - name : Archive Build Result
116
+ cwd : target/x86_64-pc-windows-gnu/release
117
+ files : adept.exe
118
+ outPath : ${{github.workspace}}/build-${{ matrix.os }}.tar.gz
119
+ - name : Archive Build Result (macOS / Linux)
119
120
if : ${{ matrix.os != 'windows-latest' }}
120
121
121
122
with :
122
123
command : c
123
- files : target/release/adept
124
- outPath : build-${{ matrix.os }}.tar.gz
124
+ cwd : target/release
125
+ files : adept
126
+ outPath : ${{github.workspace}}/build-${{ matrix.os }}.tar.gz
125
127
- name : Upload Build Artifact
126
128
uses : actions/upload-artifact@v3
127
129
with :
You can’t perform that action at this time.
0 commit comments