summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2024-11-04 11:53:47 +1100
committerMichael Hoang <enzime@users.noreply.github.com>2024-11-07 15:26:53 +1100
commit37b591bd8b3ca9641a8aff165f30927755b5dc20 (patch)
treee5b2bb3b573f5165297162af456fbc2ccfed3153 /.github
parente0f243d17e5c6281b2541c79b52be0270be9a360 (diff)
ci: remove unused workflows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml18
-rw-r--r--.github/workflows/debug.yml23
2 files changed, 0 insertions, 41 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
deleted file mode 100644
index 1cb2426..0000000
--- a/.github/workflows/build.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-name: "Build"
-on:
- # curl -fsSL -XPOST \
- # -H "Accept: application/vnd.github.everest-preview+json" \
- # -H "Authorization: token $GITHUB_TOKEN" \
- # --data '{"event_type": "build", "client_payload": {"args": "-f channel:nixpkgs-unstable hello"}}' \
- # https://api.github.com/repos/LnL7/nix-darwin/dispatches
- repository_dispatch:
- types:
- - build
-jobs:
- build:
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - uses: cachix/install-nix-action@v22
- - run: |
- nix build ${{ github.event.client_payload.args }} -vL
diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml
deleted file mode 100644
index 7535f71..0000000
--- a/.github/workflows/debug.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-name: "Debug"
-on:
- # 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
- repository_dispatch:
- types:
- - debug
-jobs:
- debug:
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v3
- - uses: cachix/install-nix-action@v22
- - run: |
- nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs
- nix-channel --update
- - run: |
- nix-shell -A installer
- nix-shell -A installer.check
- - uses: mxschmitt/action-tmate@v3