chore: update time dep in Cargo.lock #2412
Workflow file for this run
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2025 Phoenix R&D GmbH <hello@phnx.im> | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| name: Build Windows app | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| merge_group: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_INCREMENTAL: 0 | |
| jobs: | |
| windows-build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| # Fetch all commit metadata (build number is derived from number of commits) | |
| fetch-depth: 0 | |
| # Don't download historical file contents (blobs) | |
| filter: blob:none | |
| - run: git lfs install && git lfs pull | |
| - name: Set up Just | |
| uses: extractions/setup-just@v2 | |
| - name: Set up Flutter FVM | |
| uses: kuhnroyal/flutter-fvm-config-action/setup@v3 | |
| with: | |
| path: 'app/.fvmrc' | |
| cache: false | |
| - name: Set up Rust toolchain | |
| uses: dtolnay/rust-toolchain@1.92.0 | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-directories: app/build/windows/x64/plugins/airapplogic/cargokit_build | |
| - name: Build Windows app | |
| run: just build-windows | |
| - name: Upload Windows app | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: windows-app-x64 | |
| path: app/build/windows/x64/runner/Release |