nix-on-droid/.github/workflows/cachix.yml
2023-05-17 21:59:03 +02:00

29 lines
669 B
YAML

name: Build bootstrap packages and push to cachix
on:
pull_request:
push:
jobs:
cachix:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install nix
uses: cachix/install-nix-action@v20
- name: Setup cachix
uses: cachix/cachix-action@v12
with:
name: nix-on-droid
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
- name: Build bootstrap zip
run: |
nix \
--log-format bar-with-logs \
--option keep-going true \
--show-trace \
build .#bootstrapZip \
--impure