feat: initial release #1

Merged
t.behrendt merged 14 commits from initial-commit into main 2025-10-03 17:49:12 +02:00
Showing only changes of commit 648ffb0717 - Show all commits

View File

@@ -13,9 +13,7 @@ runs:
- name: Extract schema
shell: bash
run: |
// use jq to extract the $schema property from the json-file
schema=$(jq -r '.["$schema"]' < ${{ inputs.json-file }})
// if it's there, we fetch the schema from the URL
if [ -n "$schema" ]; then
curl -s $schema > schema.json
else