-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (35 loc) · 1.02 KB
/
Copy pathbuild.yml
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
name: build
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
workflow_dispatch:
jobs:
build-nynx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
fetch-depth: 1
- uses: DeterminateSystems/nix-installer-action@main
- name: Build deployer package
run: nix build --accept-flake-config .#packages.x86_64-linux.nynx
build-formatter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
fetch-depth: 1
- uses: DeterminateSystems/nix-installer-action@main
- name: Build formatter package
run: nix build --accept-flake-config .#packages.x86_64-linux.formatter
build-devShell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
fetch-depth: 1
- uses: DeterminateSystems/nix-installer-action@main
- name: Build devShell
run: nix build --accept-flake-config .#devShells.x86_64-linux.default