2020-03-29 12:31:16 +02:00
|
|
|
name: "Debug"
|
|
|
|
on:
|
2020-05-15 18:13:36 +02: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 12:31:16 +02:00
|
|
|
repository_dispatch:
|
|
|
|
types:
|
|
|
|
- debug
|
|
|
|
jobs:
|
|
|
|
debug:
|
2020-05-15 18:13:13 +02:00
|
|
|
runs-on: macos-10.15
|
2020-03-29 12:31:16 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-05-29 22:56:37 +02:00
|
|
|
- uses: cachix/install-nix-action@v9
|
2020-03-29 12:31:16 +02:00
|
|
|
- run: |
|
2020-12-21 12:57:21 +01:00
|
|
|
nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
|
2020-03-29 12:31:16 +02:00
|
|
|
nix-channel --update
|
|
|
|
- run: |
|
|
|
|
nix-shell -A installer
|
|
|
|
nix-shell -A installer.check
|
|
|
|
- uses: mxschmitt/action-tmate@v2
|