-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.08 KB
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Manifests
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v30
with:
install_url: https://nixos.org/nix/install
extra_nix_config: |
auto-optimise-store = true
experimental-features = nix-command flakes
- name: Check Nix flake
run: nix flake check --impure
- name: Build manifests archive
id: build
run: |
echo -n artifact_dir= >> "$GITHUB_OUTPUT"
nix build --print-out-paths | tee -a "$GITHUB_OUTPUT"
- name: Detect artifact version
id: ghd
uses: proudust/gh-describe@v2
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: manifests-${{ steps.ghd.outputs.describe }}
path: ${{ steps.build.outputs.artifact_dir }}
if-no-files-found: error
compression-level: 9
retention-days: 8