File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 build-windows :
1818 name : Build (Windows)
1919 runs-on : windows-latest
20+ needs : build-linux
2021
2122 permissions :
2223 contents : write
2728 uses : actions/setup-dotnet@v4
2829 with :
2930 dotnet-version : 10.0.x
31+ - uses : actions/download-artifact@v5
32+ with :
33+ name : sqelf-x86_64-unknown-linux-gnu
34+ path : ./target/x86_64-unknown-linux-gnu/release/sqelf
35+ - uses : actions/download-artifact@v5
36+ with :
37+ name : sqelf-aarch64-unknown-linux-gnu
38+ path : ./target/aarch64-unknown-linux-gnu/release/sqelf
3039 - name : Build and Publish
3140 env :
3241 DOTNET_CLI_TELEMETRY_OPTOUT : true
6170 shell : pwsh
6271 run : |
6372 ./ci/linux-x64/build.ps1
73+ - uses : actions/upload-artifact@v4
74+ with :
75+ name : sqelf-x86_64-unknown-linux-gnu
76+ path : ./target/x86_64-unknown-linux-gnu/release/sqelf
77+ - uses : actions/upload-artifact@v4
78+ with :
79+ name : sqelf-aarch64-unknown-linux-gnu
80+ path : ./target/aarch64-unknown-linux-gnu/release/sqelf
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ $version = Get-SemVer
2121Initialize-Filesystem
2222Invoke-WindowsBuild
2323Invoke-WindowsTests
24- Invoke-LinuxBuild
24+ # NOTE: We're relying on GitHub Actions to copy the linux binary across here instead of building locally
25+ # Invoke-LinuxBuild
2526Invoke-NuGetPack (Get-SemVer $shortver )
2627
2728Pop-Location
You can’t perform that action at this time.
0 commit comments