From 8c9bb80c77c333c79a76981c48c823ec03416abe Mon Sep 17 00:00:00 2001 From: ivvist Date: Tue, 12 Mar 2024 12:36:15 +0100 Subject: [PATCH] modify action with ignore-build --- action.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 6c8a757..6a0c694 100644 --- a/action.yml +++ b/action.yml @@ -13,7 +13,10 @@ inputs: description: Codecov token codecov-go-race: description: 'Codecov: use Go Race Detector' - default: true + default: 'true' + ignore-build: + description: 'Ignores go build' + default: 'false' publish-asset: description: File / dir name to publish publish-token: @@ -27,19 +30,19 @@ inputs: default: ${{ github.repository }} run-mod-tidy: description: 'Only for go-projects: execute `go mod tidy`' - default: true + default: 'true' main-branch: description: Main branch name default: main ignore-copyright: description: 'Do not check the copyright in first comments of source code' - default: false + default: 'false' test-folder: description: 'Test only in passed folder' default: '' short-test: description: 'Test onlywith flag -short' - default: false + default: 'false' outputs: release_id: description: 'The ID of the created Release'