foot: sync expr with nixpkgs #28150
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: "Build" | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '17 * * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
concurrency: build-${{matrix.jobs.branch}}-${{matrix.jobs.target}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup-nix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: | | |
accept-flake-config = true | |
- name: prepare | |
run: nix develop -c .github/init | |
- name: build | |
env: | |
CACHIX_SIGNING_KEY_NIXPKGS_WAYLAND: "${{ secrets.cachix_signing_key_nixpkgs_wayland }}" | |
run: nix develop -c ./main.nu build |