Skip to content

[deps]: Update bitwarden-generators digest to 4b0d128 #3392

[deps]: Update bitwarden-generators digest to 4b0d128

[deps]: Update bitwarden-generators digest to 4b0d128 #3392

Workflow file for this run

name: Build .NET SDK
on:
push:
branches:
- main
- rc
- hotfix-rc
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
generate_schemas:
name: Generate schemas
uses: ./.github/workflows/generate_schemas.yml
build_rust:
name: Build Rust
uses: ./.github/workflows/build-rust-cross-platform.yml
version:
name: Get version
runs-on: ubuntu-22.04
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- name: Checkout repo
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Install xmllint
run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils
- name: Get version
id: version
run: |
VERSION=$(xmllint --xpath 'string(/Project/PropertyGroup/Version)' languages/csharp/Bitwarden.Sdk/Bitwarden.Sdk.csproj)
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
build_dotnet:
name: Build .NET
runs-on: ubuntu-22.04
needs:
- generate_schemas
- build_rust
- version
steps:
- name: Checkout Repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Download C# schemas artifact
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: schemas.cs
path: languages/csharp/Bitwarden.Sdk
- name: Set up .NET Core
uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0
with:
global-json-file: languages/csharp/global.json
- name: Download x86_64-apple-darwin files
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: libbitwarden_c_files-x86_64-apple-darwin
path: languages/csharp/Bitwarden.Sdk/macos-x64
- name: Download aarch64-apple-darwin files
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: libbitwarden_c_files-aarch64-apple-darwin
path: languages/csharp/Bitwarden.Sdk/macos-arm64
- name: Download x86_64-unknown-linux-gnu files
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: libbitwarden_c_files-x86_64-unknown-linux-gnu
path: languages/csharp/Bitwarden.Sdk/linux-x64
- name: Download x86_64-pc-windows-msvc files
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: libbitwarden_c_files-x86_64-pc-windows-msvc
path: languages/csharp/Bitwarden.Sdk/windows-x64
- name: Build .NET Project
working-directory: languages/csharp/Bitwarden.Sdk
run: |
dotnet restore
dotnet build --configuration Release
- name: Pack NuGet Package
run: dotnet pack --configuration Release --output ./nuget-output /nologo /v:n
working-directory: languages/csharp/Bitwarden.Sdk
- name: Upload NuGet package
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: Bitwarden.Sdk.${{ needs.version.outputs.version }}.nupkg
path: |
./languages/csharp/Bitwarden.Sdk/nuget-output/*.nupkg