#3267 i18n: reoganize translations paths, because of Debian/Ubuntu bu… #287
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
name: 🏗️ Build QOwnNotes for Nix | |
on: | |
push: | |
branches-ignore: | |
- release | |
tags-ignore: | |
- "*" | |
paths: | |
- "src/**" | |
- "shell.nix" | |
- "default.nix" | |
- "build-systems/nix/**" | |
- ".github/workflows/build-nix.yml" | |
pull_request: | |
paths: | |
- "src/**" | |
- "shell.nix" | |
- "default.nix" | |
- "build-systems/nix/**" | |
- ".github/workflows/build-nix.yml" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: 🏗️ Build ${{ matrix.just-recipe }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
just-recipe: ["nix-build", "nix-build-cmake-qt5"] | |
os: ["ubuntu-latest", "macos-latest", "macos-14"] | |
steps: | |
- name: ⚙️ Install Nix | |
uses: cachix/install-nix-action@v31 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: 🔒 Cache dependencies | |
uses: cachix/cachix-action@v16 | |
with: | |
name: devenv | |
- name: 🔧 Install devenv.sh | |
run: nix profile install nixpkgs#devenv | |
- name: 🧰 Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: 🚧 Build nix package | |
run: devenv shell just ${{ matrix.just-recipe }} |