Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions luaxake/luaxake-frost.lua
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,10 @@ local function frost(tex_files, to_be_compiled_files)

local publication_branch = "PUB_"..head_oid


-- 07/2025: do NOT create a branch, always frost HEAD
-- TO BE CHECKED

-- local ret, publication_oid = osExecute("git rev-parse --verify --quiet "..publication_branch)
-- if ret > 0 then -- publication_branch does not (yet) exist: create it
-- osExecute("git branch "..publication_branch)
Expand Down Expand Up @@ -270,7 +272,7 @@ local function frost(tex_files, to_be_compiled_files)
local ret, output = osExecute("git reset")

-- TODO: check this, we might be creating too many commits/..
if false and tagtree_oid then
if tagtree_oid then
log:statusf("Updating tag %s for %s (was %s)", tagName, commit_oid, tag_oid)
ret, output = osExecute("git update-ref refs/tags/"..tagName.." "..commit_oid)
else
Expand Down Expand Up @@ -338,8 +340,8 @@ local function serve(force_serving)

local force_flag = force_serving and "-f " or ""


ret, output = osExecute("git push "..force_flag.."ximera HEAD:refs/heads/master", false)

if ret > 0 then
return ret,output
end
Expand Down
Loading