will this work?

This commit is contained in:
Osman Faruk Bayram 2025-10-24 09:35:55 +03:00
parent 1f343d7f5d
commit fa82615d11

View file

@ -1,13 +1,17 @@
name: Build apps to test the derivations name: Build apps to test the derivations
on: on:
workflow_dispatch:
schedule: schedule:
- cron: '0 0 * * *' # Every day at midnight UTC - cron: '0 0 * * *' # Every day at midnight UTC
push:
jobs: jobs:
build-sd-image: build-sd-image:
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
# all 2 apps matrix smouldering durtles and mihon
matrix:
app: [smouldering_durtles, mihon]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -16,4 +20,4 @@ jobs:
uses: cachix/install-nix-action@v31 uses: cachix/install-nix-action@v31
- name: Build SD image - name: Build SD image
run: nix build -L '.#smouldering_durtles' run: nix build -L ".#${{ matrix.app }}"