Changed update pipeline

This commit is contained in:
Julien Malka 2023-01-19 21:23:23 +01:00
parent 45b19e73e3
commit 60026e2020
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -228,9 +228,10 @@ def nix_update_flake_config(
steps.Git( steps.Git(
repourl=url_with_secret, repourl=url_with_secret,
alwaysUseLatest=True, alwaysUseLatest=True,
method="clean", method="clobber",
submodules=True, submodules=True,
haltOnFailure=True, haltOnFailure=True,
branch="update_flake_lock",
) )
) )
factory.addStep( factory.addStep(
@ -259,7 +260,6 @@ def nix_update_flake_config(
command=[ command=[
"git", "git",
"push", "push",
"--force",
"origin", "origin",
"HEAD:refs/heads/update_flake_lock", "HEAD:refs/heads/update_flake_lock",
], ],