From 54436b333d0274b81c5269d4b2880cb550084b8b Mon Sep 17 00:00:00 2001 From: Braydon Date: Sun, 6 Aug 2023 01:37:18 -0400 Subject: [PATCH] forgot tag in action.yml --- action.yml | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/action.yml b/action.yml index 336e73f..d7ee337 100644 --- a/action.yml +++ b/action.yml @@ -1,30 +1,33 @@ -name: 'Gitea Release Action' -description: 'A Gitea Action to manage Gitea release' +name: "Gitea Release Action" +description: "A Gitea Action to manage Gitea release" inputs: files: - description: 'The files needs to be uploaded' + description: "The files needs to be uploaded" required: true - title: - description: 'The release title' + tag: + description: "The release tag" required: false - body: - description: 'The release body' + title: + description: "The release title" required: false - pre_release: + body: + description: "The release body" + required: false + pre_release: description: "Whether it's a pre release" required: false - draft: + draft: description: "Whether it's a draft" required: false api_key: - description: 'The access token to interact with Gitea' + description: "The access token to interact with Gitea" required: false insecure: - description: 'Whether allow insecure Gitea instance' + description: "Whether allow insecure Gitea instance" required: false outputs: status: - description: 'The upload status' + description: "The upload status" runs: - using: 'go' - main: 'main.go' + using: "go" + main: "main.go"