Update machines #126
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
# See https://lgug2z.com/articles/building-and-privately-caching-x86-and-aarch64-nixos-systems-on-github-actions/ | |
name: "Update" | |
on: | |
workflow_dispatch: # allows manual triggering | |
schedule: | |
- cron: '30 04 * * MON' # runs weekly on Monday at 04:30 | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare build environment | |
uses: ./.github/actions/prepare-build-environment | |
with: | |
attic_token: ${{ secrets.ATTIC_TOKEN }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update flake.lock and build | |
id: build | |
run: | | |
nix flake update | |
# FIXME: nix-fast-build hangs indefinitely while copying some sources | |
# nix run github:Mic92/nix-fast-build -- --skip-cached --no-nom --flake ".#nixosConfigurations.matebook.config.system.build.toplevel" | |
nix build ".#nixosConfigurations.matebook.config.system.build.toplevel" | |
- name: Commit flake.lock on success | |
if: steps.build.outcome == 'success' | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: 'base: update packages' | |
file_pattern: 'flake.lock' | |
- name: Push system to private cache on success | |
if: steps.build.outcome == 'success' | |
uses: ./.github/actions/push-to-cache | |
with: | |
attic_token: ${{ secrets.ATTIC_TOKEN }} | |