Skip to content

Commit 087ab40

Browse files
committed
feat: add readme, license, ci
1 parent d3fc129 commit 087ab40

3 files changed

Lines changed: 744 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build Flag 0.0.1
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repo
13+
uses: actions/checkout@v4
14+
15+
- name: Install Nix
16+
uses: cachix/install-nix-action@v24
17+
with:
18+
nix_path: nixpkgs=channel:nixos-unstable
19+
20+
- name: Build Flag 0.0.1
21+
run: |
22+
nix build .#flag
23+
24+
MIN_SRC=$(echo result/flag_0.0.1.raw)
25+
MIN_DST="flag_0.0.1.raw"
26+
cp "$MIN_SRC" "$MIN_DST"
27+
28+
- name: Upload Flag 0.0.1
29+
uses: actions/upload-artifact@v4
30+
with:
31+
name: Flag 0.0.1
32+
path: flag_0.0.1.raw

0 commit comments

Comments
 (0)