2024-11-06 13:18:17 +01:00
|
|
|
name: "Build legacy Nix package on Ubuntu"
|
|
|
|
|
|
|
|
on:
|
2024-11-27 22:47:31 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-11-06 13:18:17 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-11-27 22:34:33 +01:00
|
|
|
- uses: https://github.com/actions/checkout@v4
|
2024-11-27 22:37:15 +01:00
|
|
|
|
|
|
|
- name: Install sudo
|
|
|
|
run: apt update && apt install sudo
|
|
|
|
|
2024-11-27 22:34:33 +01:00
|
|
|
- uses: https://github.com/cachix/install-nix-action@v30
|
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
2024-11-27 22:37:15 +01:00
|
|
|
|
2024-11-06 13:18:17 +01:00
|
|
|
- name: Building package
|
|
|
|
run: nix build
|