Skip to content

Commit f495837

Browse files
committed
Build with GitHub Actions
1 parent 4180f26 commit f495837

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/docker.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Docker
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
9+
10+
jobs:
11+
Build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: DeterminateSystems/nix-installer-action@v15
17+
with:
18+
source-url: https://install.lix.systems/lix/lix-installer-x86_64-linux
19+
diagnostic-endpoint: ""
20+
21+
- uses: cachix/cachix-action@v15
22+
with:
23+
name: drakon64-amaurot
24+
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
25+
26+
- run: nix-build anyder.nix ktisis.nix
27+
working-directory: nix

0 commit comments

Comments
 (0)