-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (44 loc) · 1.58 KB
/
Copy pathdevshell.yml
File metadata and controls
44 lines (44 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 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/devshell.yml") and run:
# nix run .#render-workflows
# Or commit to trigger the pre-commit hook if enabled.
jobs:
build-dev-shell:
name: Build devShell
runs-on: macos-15
steps:
- name: Checkout code
uses: actions/checkout@v7.0.1
- name: Install Lix
uses: samueldr/lix-gha-installer-action@v2026-06-15
with:
extra_nix_config: |-
accept-flake-config = true
max-jobs = auto
- name: Add SSH keys to ssh-agent
uses: webfactory/ssh-agent@v0.10.0
with:
ssh-private-key: |-
${{ secrets.SECRETS_DEPLOY_KEY }}
${{ secrets.PRAGMATAPRO_DEPLOY_KEY }}
- name: Setup Attic cache
uses: ryanccn/attic-action@v0.4
with:
cache: tilde
endpoint: https://cache.e10.camp
install-command: nix profile install github:NixOS/nixpkgs/nixpkgs-unstable#attic-client
token: ${{ secrets.ATTIC_TOKEN }}
- name: Use Cachix store
uses: cachix/cachix-action@v17
with:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
installCommand: nix profile install github:NixOS/nixpkgs/nixpkgs-unstable#cachix
name: tilde
- name: Build aarch64-darwin shell
run: nix build .#devShells.aarch64-darwin.default --impure --keep-going --print-build-logs
--show-trace --verbose
name: devShell
'on':
push: {}
workflow_dispatch: {}