Add support for hyprland's new IPC event since v0.37.0 and change 'switch case' to map #367
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Binary Cache | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
nix: | |
name: "Build" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: cachix/install-nix-action@v25 | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: ags | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Build ags | |
run: | | |
nix build --print-build-logs | |
nix build --print-build-logs .#agsWithTypes |