feat: add support for wayland ext_background effect #348
Workflow file for this run
This file contains hidden or 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: Nix | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@main | |
| - name: Set up Cachix | |
| uses: cachix/cachix-action@v16 | |
| with: | |
| name: walker | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - name: Build default package | |
| run: nix build -L --extra-substituters "https://walker.cachix.org" .#default --print-out-paths | cachix push walker |