Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 8s
Check Nix flake / Build nix outputs (ubuntu-latest) (pull_request) Failing after 1m19s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Failing after 1m20s
Check Nix formatting / Perform Nix format checks (pull_request) Failing after 1m19s
12 lines
182 B
Bash
Executable File
12 lines
182 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -v
|
|
set -x
|
|
|
|
git checkout main
|
|
git branch -D update_flake_lock_action || true
|
|
git checkout -b update_flake_lock_action
|
|
nix flake update
|
|
nix flake check
|