mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
31 lines
703 B
YAML
31 lines
703 B
YAML
name: Build bootstrap packages and push to cachix
|
|
on:
|
|
pull_request:
|
|
push:
|
|
schedule:
|
|
- cron: 0 0 * * 1
|
|
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
|