debian-mirror-gitlab/spec/contracts/provider/helpers/publish_contract_helper.rb
2023-01-12 18:35:48 +00:00

17 lines
478 B
Ruby

# frozen_string_literal: true
module Provider
module PublishContractHelper
PROVIDER_VERSION = ENV['GIT_COMMIT'] || `git rev-parse --verify HEAD`.strip
PROVIDER_BRANCH = ENV['GIT_BRANCH'] || `git name-rev --name-only HEAD`.strip
PUBLISH_FLAG = true
def self.publish_contract_setup
@setup ||= -> {
app_version PROVIDER_VERSION
app_version_branch PROVIDER_BRANCH
publish_verification_results PUBLISH_FLAG
}
end
end
end