File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,16 @@ jobs:
19
19
os : [macos-latest, windows-latest, ubuntu-latest]
20
20
include :
21
21
- os : windows-latest
22
- binary_path : target/superoptimized/sqlpage .exe
22
+ binary_extension : .exe
23
23
target : x86_64-pc-windows-msvc
24
24
- os : macos-latest
25
- binary_path : target/superoptimized/sqlpage
26
25
target : x86_64-apple-darwin
27
26
- os : ubuntu-latest
28
- binary_path : target/superoptimized/sqlpage
29
27
target : x86_64-unknown-linux-musl
30
28
steps :
31
29
- uses : actions/checkout@v4
32
30
- name : Install Rust toolchain
33
- run : |
34
- rustup toolchain install --target ${{ matrix.target }} --profile minimal stable
31
+ run : rustup toolchain install --target ${{ matrix.target }} --profile minimal stable
35
32
- name : Install musl toolchain
36
33
if : matrix.os == 'ubuntu-latest'
37
34
run : sudo apt-get install -y musl-tools
42
39
- uses : actions/upload-artifact@v4
43
40
with :
44
41
name : sqlpage ${{ matrix.os }}
45
- path : ${{ matrix.binary_path }}
42
+ path : target/${{ matrix.target }}/superoptimized/sqlpage${{ matrix.binary_extension }}
43
+ if-no-files-found : error
46
44
build-aws :
47
45
name : Build AWS Lambda Serverless zip image
48
46
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments