From 1377b91eadc4ebb9566f89847d91b63a3d053b3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 24 Apr 2025 23:20:55 +0200 Subject: [PATCH] CI: Remove now unused godot-api-dump action Its use was removed in b8480ffa21f8d713815017bc9974f7c0ab169d50. --- .github/actions/godot-api-dump/action.yml | 25 ----------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/actions/godot-api-dump/action.yml diff --git a/.github/actions/godot-api-dump/action.yml b/.github/actions/godot-api-dump/action.yml deleted file mode 100644 index dee70298c4b..00000000000 --- a/.github/actions/godot-api-dump/action.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Dump Godot API -description: Dump Godot API for GDExtension - -inputs: - bin: - description: The path to the Godot executable - required: true - -runs: - using: composite - steps: - # Dump GDExtension interface and API - - name: Dump GDExtension interface and API for godot-cpp build - shell: sh - run: | - ${{ inputs.bin }} --headless --dump-gdextension-interface --dump-extension-api - mkdir godot-api - cp -f gdextension_interface.h godot-api/ - cp -f extension_api.json godot-api/ - - - name: Upload API dump - uses: ./.github/actions/upload-artifact - with: - name: godot-api-dump - path: ./godot-api/*