Fix deployment_id to deployment-id in workflow files (#1211) #5506
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
name: Build @bitwarden/sdk-napi | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
- "rc" | |
- "hotfix-rc" | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
working-directory: crates/bitwarden-napi | |
jobs: | |
generate_schemas: | |
name: Generate schemas | |
uses: ./.github/workflows/generate_schemas.yml | |
build: | |
name: Building @bitwarden/sdk-napi for - ${{ matrix.settings.os }} | |
runs-on: ${{ matrix.settings.os || 'ubuntu-24.04' }} | |
needs: generate_schemas | |
strategy: | |
fail-fast: false | |
matrix: | |
settings: | |
- os: macos-13 | |
target: x86_64-apple-darwin | |
build: | | |
npm run build | |
strip -x *.node | |
- os: macos-13 | |
target: aarch64-apple-darwin | |
build: | | |
npm run build-arm64 | |
strip -x *.node | |
- os: windows-2022 | |
target: x86_64-pc-windows-msvc | |
build: npm run build | |
- os: ubuntu-22.04 | |
target: x86_64-unknown-linux-gnu | |
build: | | |
set -e && | |
npm run build && | |
strip *.node | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Node | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: 18 | |
cache: "npm" | |
cache-dependency-path: crates/bitwarden-napi/package-lock.json | |
- name: Install rust | |
uses: dtolnay/rust-toolchain@315e265cd78dad1e1dcf3a5074f6d6c47029d5aa # stable | |
with: | |
toolchain: stable | |
targets: ${{ matrix.settings.target }} | |
- name: Cache cargo registry | |
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5 | |
with: | |
key: ${{ matrix.settings.target }}-cargo-${{ matrix.settings.os }} | |
- name: Retrieve schemas | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: schemas.ts | |
path: ${{ github.workspace }}/crates/bitwarden-napi/src-ts/bitwarden_client/ | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: ${{ matrix.settings.build }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: sdk-bitwarden-napi-${{ matrix.settings.target }} | |
path: ${{ github.workspace }}/crates/bitwarden-napi/sdk-napi.*.node | |
if-no-files-found: error |