diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1159e0e..6140f52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,14 +16,15 @@ jobs: - name: Read schema.yml and fetch file id: fetch-file run: | - sudo apt-get install -y jq - CONTENT=$(cat Fastbot/schema.yml) - CONFIG_PATH=$(echo "$CONTENT" | jq -r '.config.path') - CONFIG_BRANCH=$(echo "$CONTENT" | jq -r '.config.branch') - echo "Path: $CONFIG_PATH" - echo "Branch: $CONFIG_BRANCH" - JSON_FILE_URL="https://raw.githubusercontent.com/$CONFIG_PATH/$CONFIG_BRANCH/schema.json" - curl -sS "$JSON_FILE_URL" > temp.json + cat Fastbot/schema.yml + # sudo apt-get install -y jq + # CONTENT=$(cat Fastbot/schema.yml) + # CONFIG_PATH=$(echo "$CONTENT" | jq -r '.config.path') + # CONFIG_BRANCH=$(echo "$CONTENT" | jq -r '.config.branch') + # echo "Path: $CONFIG_PATH" + # echo "Branch: $CONFIG_BRANCH" + # JSON_FILE_URL="https://raw.githubusercontent.com/$CONFIG_PATH/$CONFIG_BRANCH/schema.json" + # curl -sS "$JSON_FILE_URL" > temp.json - uses: InoUno/yaml-ls-check@develop with: