summaryrefslogtreecommitdiffstats
path: root/.github/actions/godot-api-dump/action.yml
blob: dee70298c4b57ca9a8a339e90439f1721c3873b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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/*