From 27a9f3aa1a4cbb65703ac5e41c8e0d686994afd4 Mon Sep 17 00:00:00 2001 From: brendan <2bndy5@gmail.com> Date: Thu, 10 Dec 2020 18:03:19 -0800 Subject: [PATCH] bad indent in action.yml --- action.yml | 81 +++++++++++++++++++++++++++--------------------------- 1 file changed, 41 insertions(+), 40 deletions(-) diff --git a/action.yml b/action.yml index 824ea79..16c9d07 100644 --- a/action.yml +++ b/action.yml @@ -1,41 +1,42 @@ -name: rmskin-build -description: packaging tool for Rainmeter User Content - -# for the badge -branding: - icon: 'droplet' - -inputs: - version: # 'auto' - description: "Version of the Rainmeter rmskin package. Defaults to last 8 digits of SHA from commit or reference tags." - required: false - default: 'auto' - title: # 'repo-name' - description: "Name of the Rainmeter rmskin package. Defaults name of repository." - required: false - default: ${{ github.event.repository.name }} - author: # 'repo-owner' - description: "Account Username maintaining the rmskin package. Defaults to Username that triggered the commit." - required: false - default: ${{ github.repository_owner }} - path: # '.' - description: "Base directory of repo being packaged. Defaults to workflow's workspace path" - required: false - default: "/github/workspace" - dir_out: # '.' - description: "Path to save generated rmskin package. Defaults to workflow's workspace path" - required: false - default: "/github/workspace" - -outputs: - arc_name: # path to & name of archive file that was generated - description: 'name of rmskin file' -runs: - using: 'docker' - image: 'Dockerfile' - args: - - ${{ inputs.path }} - - ${{ inputs.version }} - - ${{ inputs.author }} - - ${{ inputs.title }} +name: rmskin-build +description: packaging tool for Rainmeter User Content + +# for the badge +branding: + icon: 'droplet' + +inputs: + version: # 'auto' + description: "Version of the Rainmeter rmskin package. Defaults to last 8 digits of SHA from commit or reference tags." + required: false + default: 'auto' + title: # 'repo-name' + description: "Name of the Rainmeter rmskin package. Defaults name of repository." + required: false + default: ${{ github.event.repository.name }} + author: # 'repo-owner' + description: "Account Username maintaining the rmskin package. Defaults to Username that triggered the commit." + required: false + default: ${{ github.repository_owner }} + path: # '.' + description: "Base directory of repo being packaged. Defaults to workflow's workspace path" + required: false + default: "/github/workspace" + dir_out: # '.' + description: "Path to save generated rmskin package. Defaults to workflow's workspace path" + required: false + default: "/github/workspace" + +outputs: + arc_name: # path to & name of archive file that was generated + description: "name of rmskin file" + +runs: + using: 'docker' + image: 'Dockerfile' + args: + - ${{ inputs.path }} + - ${{ inputs.version }} + - ${{ inputs.author }} + - ${{ inputs.title }} - ${{ inputs.dir_out }} \ No newline at end of file