Skip to content

#3120 add: show file size in note list tooltip #49

#3120 add: show file size in note list tooltip

#3120 add: show file size in note list tooltip #49

Workflow file for this run

name: 🏗️ Build QOwnNotes for Nix
on:
push:
branches-ignore:
- release
tags-ignore:
- '*'
paths:
- 'src/**'
- 'default.nix'
- 'build-systems/nix/**'
- '.github/workflows/build-nix.yml'
pull_request:
paths:
- 'src/**'
- 'default.nix'
- 'build-systems/nix/**'
- '.github/workflows/build-nix.yml'
workflow_dispatch:
jobs:
build:
name: 🏗️ Build ${{ matrix.just-recipe }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
just-recipe: ['nix-build', 'nix-build-cmake-qt5']
steps:
- name: ⚙️ Install Nix
uses: cachix/install-nix-action@V28
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: 🧰 Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: 🚧 Build nix package
run: nix-shell --run "just ${{ matrix.just-recipe }}"