From 437e60669818531709e711d00c74caecd2d5f0c9 Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Wed, 13 Mar 2024 20:44:52 +0100 Subject: [PATCH] revert: support LUAROCKS_TAG_RELEASE_DISABLE_UPLOAD environment variable This reverts commit a7fb13c2e26d99918315530c3ad2fbc0c9ee38da. --- bin/luarocks-tag-release-action.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/luarocks-tag-release-action.lua b/bin/luarocks-tag-release-action.lua index 748f331..465cb25 100644 --- a/bin/luarocks-tag-release-action.lua +++ b/bin/luarocks-tag-release-action.lua @@ -51,7 +51,7 @@ local args = { detailed_description_lines = Parser.parse_list_args(getenv_or_empty('INPUT_DETAILED_DESCRIPTION')), rockspec_template_file_path = template_input ~= '' and template_input or action_path .. '/resources/rockspec.template', - upload = os.getenv('LUAROCKS_TAG_RELEASE_DISABLE_UPLOAD') ~= nil or not is_pull_request, + upload = not is_pull_request, license = license_input ~= '' and license_input or nil, luarocks_test_interpreters = test_interpreters, extra_luarocks_args = Parser.parse_list_args(getenv_or_empty('INPUT_EXTRA_LUAROCKS_ARGS')),