Skip to content

Commit

Permalink
bad indent in action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Dec 11, 2020
1 parent 1427db8 commit 27a9f3a
Showing 1 changed file with 41 additions and 40 deletions.
81 changes: 41 additions & 40 deletions action.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 27a9f3a

Please sign in to comment.