// Copyright 2023 The Gitea Authors. All rights reserved. // SPDX-License-Identifier: MIT // Package ver provides version information for the runner. package ver // go build -ldflags "-X git.marketally.com/gitcaddy/gitcaddy-runner/internal/pkg/ver.version=1.2.3" var version = "dev" // Version returns the current runner version. func Version() string { return version }