@@ -18,34 +18,32 @@ jobs:
18
18
components : rust-src
19
19
targets : x86_64-pc-windows-msvc
20
20
21
- - name : Install Perl
22
- uses : shogo82148/actions-setup-perl@v1
23
- with :
24
- distribution : strawberry
25
- perl-version : " 5.32"
21
+ # - name: Install Perl
22
+ # uses: shogo82148/actions-setup-perl@v1
23
+ # with:
24
+ # distribution: strawberry
25
+ # perl-version: "5.32"
26
26
27
- - name : Install make with Chocolatey
28
- shell : bash
29
- run : choco install make
27
+ # - name: Install make with Chocolatey
28
+ # shell: bash
29
+ # run: choco install make
30
30
31
- - name : Set Windows environment variables
32
- shell : pwsh
33
- run : |
34
- echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV
35
- echo "OPENSSL_SRC_PERL=C:/Strawberry/perl/bin/perl" >> $env:GITHUB_ENV
31
+ # - name: Set Windows environment variables
32
+ # shell: pwsh
33
+ # run: |
34
+ # echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV
35
+ # echo "OPENSSL_SRC_PERL=C:/Strawberry/perl/bin/perl" >> $env:GITHUB_ENV
36
36
37
37
- name : Setup
38
38
run : |
39
- cargo build -p powersync_loadable --release --target x86_64-pc-windows-msvc -Zbuild-std -v
40
- ls "target/x86_64-pc-windows-msvc"
41
- ls "target/x86_64-pc-windows-msvc/release"
42
- mv "target/x86_64-pc-windows-msvc/release/libpowersync.dll" "libpowersync_x64.dll"
39
+ cargo build -p powersync_loadable --release --target x86_64-pc-windows-msvc -Zbuild-std
40
+ mv "target/x86_64-pc-windows-msvc/release/powersync.dll" "powersync_x64.dll"
43
41
44
42
- name : Upload binary
45
43
uses : svenstaro/upload-release-action@v2
46
44
with :
47
45
repo_token : ${{ secrets.GITHUB_TOKEN }}
48
46
overwrite : true
49
- file : libpowersync_x64 .dll
50
- asset_name : libpowersync_x64 .dll
47
+ file : powersync_x64 .dll
48
+ asset_name : powersync_x64 .dll
51
49
tag : v0.1.6
0 commit comments