fix(action): correct invalid YAML syntax
The action.yml file had multiple syntax errors, including incorrect indentation and misplaced keys. This caused the action to fail during workflow parsing. This commit corrects the YAML structure to be valid, ensuring the action can be loaded correctly.
This commit is contained in:
20
action.yml
20
action.yml
@@ -13,16 +13,16 @@ inputs:
|
|||||||
github-token:
|
github-token:
|
||||||
description: 'GitHub token for downloading from a private repository. The default token is usually sufficient within the same organization.'
|
description: 'GitHub token for downloading from a private repository. The default token is usually sufficient within the same organization.'
|
||||||
required: false
|
required: false
|
||||||
default: ${{ github.token }}
|
default: ${{ github.token }}
|
||||||
|
|
||||||
branding:
|
branding:
|
||||||
icon: 'anchor'
|
icon: 'anchor'
|
||||||
color: 'blue'
|
color: 'blue'
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- name: Get Version Tag for Download
|
- name: Get Version Tag for Download
|
||||||
id: get_version
|
id: get_version
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user