Skip to content

Commit

Permalink
Add dummy signature when committing since name might not be
Browse files Browse the repository at this point in the history
available when authenticating with app.
  • Loading branch information
andreasnoack committed Nov 21, 2023
1 parent 8e73aa7 commit 22659c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/AutoBuild.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1585,7 +1585,9 @@ function push_jll_package(name, build_version;
# Next, push up the wrapper code repository
wrapper_repo = LibGit2.GitRepo(code_dir)
LibGit2.add!(wrapper_repo, ".")
commit = LibGit2.commit(wrapper_repo, "$(name)_jll build $(build_version)")
commit = LibGit2.commit(wrapper_repo, "$(name)_jll build $(build_version)",

Check warning on line 1588 in src/AutoBuild.jl

View check run for this annotation

Codecov / codecov/patch

src/AutoBuild.jl#L1588

Added line #L1588 was not covered by tests
author = LibGit2.Signature("BinaryBuilder", "binary@builder"),
committer = LibGit2.Signature("BinaryBuilder", "binary@builder"))
Wizard.with_gitcreds("x-access-token", gh_auth.token) do creds

Check warning on line 1591 in src/AutoBuild.jl

View check run for this annotation

Codecov / codecov/patch

src/AutoBuild.jl#L1591

Added line #L1591 was not covered by tests
refspecs = ["refs/heads/main"]
# Fetch the remote repository, to have the relevant refspecs up to date.
Expand Down

0 comments on commit 22659c1

Please sign in to comment.