this changes nix into believing it can run darwin, when it cannot, it should however do remote builds
21 lines
391 B
YAML
21 lines
391 B
YAML
name: Build Clan App (Darwin)
|
|
|
|
on:
|
|
schedule:
|
|
# Run every 4 hours
|
|
- cron: "0 */4 * * *"
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-clan-app-darwin:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Build clan-app for x86_64-darwin
|
|
run: |
|
|
nix build .#packages.x86_64-darwin.clan-app --log-format bar-with-logs
|