ci: setup building nuget packages in CI #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: .NET | |
jobs: | |
windows-build: | |
runs-on: windows-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Install rustup using win.rustup.rs | |
run: | | |
# disable download progress bar | |
$ProgressPreference = "SilentlyContinue" | |
Invoke-WebRequest https://win.rustup.rs/ -OutFile rustup-init.exe | |
.\rustup-init.exe -y --default-host=x86_64-pc-windows-msvc --default-toolchain=none | |
del rustup-init.exe | |
rustup target add x86_64-pc-windows-msvc | |
rustup target add i686-pc-windows-msvc | |
shell: powershell | |
- name: build | |
run: | | |
.\windows\build-artifacts.ps1 bin | |
- name: pack | |
run: | | |
$sha = "${{ github.sha }}".SubString(0, 8) | |
dotnet pack .\windows\libdatadog.csproj -p:LibDatadogBinariesOutputDir=..\bin -p:LibDatadogVersion="42.0.0+${sha}" -o .nuget\packages\ | |
- name: store artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: packages | |
path: .nuget/packages/* | |
if-no-files-found: error |