You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xplr/.github/workflows/nix-cache.yml

19 lines
477 B
YAML

name: "Push Binary Cache for Nix"
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nixbuild/nix-quick-install-action@v19
with:
nix_conf: experimental-features = nix-command flakes
- uses: cachix/cachix-action@v11
with:
name: xplr
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: nix-build
- run: nix-shell --run "xplr --version"