Skip to content

Commit

Permalink
revert: support LUAROCKS_TAG_RELEASE_DISABLE_UPLOAD environment variable
Browse files Browse the repository at this point in the history
This reverts commit a7fb13c.
  • Loading branch information
mrcjkb committed Mar 13, 2024
1 parent 5172d1f commit 437e606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/luarocks-tag-release-action.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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')),
Expand Down

0 comments on commit 437e606

Please sign in to comment.