diff --git a/.lune/update_tools.luau b/.lune/update_tools.luau index 267d87c..fe2e467 100644 --- a/.lune/update_tools.luau +++ b/.lune/update_tools.luau @@ -67,13 +67,7 @@ for _, binSrc in pathfs.readDir(BINS_SRC_DIR) do -- Make sure we have a repo name and version assert(repoName and version, `Failed to get repo name and entrypoint for tool {binSrc}`) - local gh = Github.new( - repoName :: string, - Option.Some({ - authToken = Option.Some("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"), - retries = Option.None, - } :: Github.Config) :: Option - ) + local gh = Github.new(repoName :: string, Option.None :: Option) local transactions = gh:queueTransactions({ "FetchReleases" }) -- Fetch releases, and order them by published date