Skip to content

Commit 838c9de

Browse files
committed
feat: add workflow for building packages
1 parent f231670 commit 838c9de

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build packages
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v7
12+
13+
- uses: cachix/install-nix-action@v31
14+
15+
- uses: cachix/cachix-action@v17
16+
with:
17+
name: ahmed-amr
18+
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
19+
20+
- run: |
21+
nix build \
22+
.#spotify-adblock \
23+
.#wps-fonts \
24+
.#flydigictl \
25+
.#apple-fonts \
26+
.#claude-desktop \
27+
.#open-scq30 \
28+
.#gpu-screen-recorder \
29+
.#gpu-screen-recorder-notification \
30+
.#gpu-screen-recorder-ui \
31+
.#prismlauncher-9

0 commit comments

Comments
 (0)