Skip to content

Have OpenCode ask for permissions #23

Have OpenCode ask for permissions

Have OpenCode ask for permissions #23

Workflow file for this run

# This file was autogenerated by actions.nix. Do not edit it manually.
# To make changes, edit the workflow definition in your flake's actions-nix configuration
# (typically under flake.actions-nix.workflows.".github/workflows/hosts.yml") and run:
# nix run .#render-workflows
# Or commit to trigger the pre-commit hook if enabled.
jobs:
build-system:
name: Build host system
runs-on: macos-15
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Install Lix
uses: samueldr/lix-gha-installer-action@7b7f14d320d6aacfb65bd1ef761566b3b69e474c
with:
extra_nix_config: |-
accept-flake-config = true
max-jobs = auto
- name: Add SSH keys to ssh-agent
uses: webfactory/ssh-agent@e83874834305fe9a4a2997156cb26c5de65a8555
with:
ssh-private-key: |-
${{ secrets.SECRETS_DEPLOY_KEY }}
${{ secrets.PRAGMATAPRO_DEPLOY_KEY }}
- name: Setup Attic cache
uses: ryanccn/attic-action@1887fd507f03327c96c64cca30118c96eb17fdad
with:
cache: tilde
endpoint: https://cache.e10.camp
token: ${{ secrets.ATTIC_TOKEN }}
- name: Use Cachix store
uses: cachix/cachix-action@1eb2ef646ac0255473d23a5907ad7b04ce94065c
with:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
installCommand: nix profile install github:NixOS/nixpkgs/nixpkgs-unstable#cachix
name: tilde
- name: Build ${{ matrix.host }} host system
run: nix build .#darwinConfigurations.${{ matrix.host }}.system --keep-going
--print-build-logs --show-trace --verbose
strategy:
matrix:
host:
- eMac
- mercury
name: Host configurations
'on':
push: {}
workflow_dispatch: {}