From 877d03fffceda8e636e7abae494b0c16b04c1a0e Mon Sep 17 00:00:00 2001 From: OmentaElvis Date: Sat, 20 Dec 2025 15:48:41 +0300 Subject: [PATCH] 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. --- action.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/action.yml b/action.yml index 3d5f15e..d0d7409 100644 --- a/action.yml +++ b/action.yml @@ -13,16 +13,16 @@ inputs: github-token: description: 'GitHub token for downloading from a private repository. The default token is usually sufficient within the same organization.' required: false - default: ${{ github.token }} - - branding: - icon: 'anchor' - color: 'blue' - - runs: - using: "composite" - steps: - - name: Get Version Tag for Download + default: ${{ github.token }} + +branding: + icon: 'anchor' + color: 'blue' + +runs: + using: "composite" + steps: + - name: Get Version Tag for Download id: get_version shell: bash run: |