2020-03-29 10:31:16 +00:00
|
|
|
name: "Debug"
|
|
|
|
on:
|
2020-05-15 16:13:36 +00:00
|
|
|
# curl -fsSL -XPOST \
|
|
|
|
# -H "Accept: application/vnd.github.everest-preview+json" \
|
|
|
|
# -H "Authorization: token $GITHUB_TOKEN" \
|
|
|
|
# --data '{"event_type": "debug"}' \
|
|
|
|
# https://api.github.com/repos/LnL7/nix-darwin/dispatches
|
2020-03-29 10:31:16 +00:00
|
|
|
repository_dispatch:
|
|
|
|
types:
|
|
|
|
- debug
|
|
|
|
jobs:
|
|
|
|
debug:
|
2022-08-12 16:13:11 +00:00
|
|
|
runs-on: macos-12
|
2020-03-29 10:31:16 +00:00
|
|
|
steps:
|
2023-04-26 21:00:58 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-06-18 18:00:49 +00:00
|
|
|
- uses: cachix/install-nix-action@v22
|
2020-03-29 10:31:16 +00:00
|
|
|
- run: |
|
2020-12-21 11:57:21 +00:00
|
|
|
nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
|
2020-03-29 10:31:16 +00:00
|
|
|
nix-channel --update
|
|
|
|
- run: |
|
|
|
|
nix-shell -A installer
|
|
|
|
nix-shell -A installer.check
|
2021-12-21 13:23:21 +00:00
|
|
|
- uses: mxschmitt/action-tmate@v3
|