update-flakes #544
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
jobs: | |
update-flakes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: easimon/maximize-build-space@v7 | |
with: | |
overprovision-lvm: true | |
remove-android: true | |
remove-codeql: true | |
remove-docker-images: true | |
remove-dotnet: true | |
remove-haskell: true | |
root-reserve-mb: 512 | |
swap-size-mb: 1024 | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v20 | |
with: | |
extra_nix_config: access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Set default git branch (to reduce log spam) | |
run: git config --global init.defaultBranch master | |
- uses: cachix/cachix-action@v12 | |
with: | |
authToken: ${{ secrets.CACHIX_TOKEN }} | |
extraPullNames: nix-community | |
name: thiagokokada-nix-configs | |
- name: Update flake.lock | |
run: | | |
git config user.name "${{ github.actor }}" | |
git config user.email "${{ github.actor }}@users.noreply.github.com" | |
nix flake update --commit-lock-file | |
- name: 'Build Home-Manager configs for: home-linux, steamdeck' | |
run: |- | |
nix build --print-build-logs '.#homeConfigurations.home-linux.activationPackage' | |
nix build --print-build-logs '.#homeConfigurations.steamdeck.activationPackage' | |
- name: 'Build NixOS configs for: hachune-nixos, miku-nixos, mirai-vps, sankyuu-nixos' | |
run: |- | |
nix build --print-build-logs '.#nixosConfigurations.hachune-nixos.config.system.build.toplevel' | |
nix build --print-build-logs '.#nixosConfigurations.miku-nixos.config.system.build.toplevel' | |
nix build --print-build-logs '.#nixosConfigurations.mirai-vps.config.system.build.toplevel' | |
nix build --print-build-logs '.#nixosConfigurations.sankyuu-nixos.config.system.build.toplevel' | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
body: | | |
## Run report | |
https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
branch: flake-updates | |
delete-branch: true | |
title: Update flake.lock | |
name: update-flakes | |
"on": | |
schedule: | |
- cron: 40 4 * * 0,2,4,6 | |
workflow_dispatch: null |