Skip to content

Commit bb4044d

Browse files
committed
feat: add automated builds to branch
1 parent fef3f3e commit bb4044d

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build with Colmena
2+
3+
on:
4+
push:
5+
branches:
6+
- automated_builds
7+
8+
jobs:
9+
build_and_deploy:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Install Nix
19+
uses: cachix/install-nix-action@v27
20+
21+
- name: Build with Colmena
22+
run: nix develop -c colmena build
23+

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# nix
22

3+
[![GitHub Actions Build](https://github.com/ocf/nix/actions/workflows/build-with-colmena.yml/badge.svg)](https://github.com/ocf/nix/actions/workflows/build-with-colmena.yml)
4+
35
This repository contains the [NixOS] files used to maintain and configure the
46
servers and desktops used by the [Open Computing Facility] at UC Berkeley.
57

0 commit comments

Comments
 (0)