summaryrefslogtreecommitdiffstats
path: root/.github/actions/download-artifact/action.yml
blob: 58c2aa906071ca5b284b2f70b457bacc8274470d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Download Godot artifact
description: Download the Godot artifact.
inputs:
  name:
    description: The artifact name.
    default: "${{ github.job }}"
  path:
    description: The path to download and extract to.
    required: true
    default: "./"
runs:
  using: "composite"
  steps:
    - name: Download Godot Artifact
      uses: actions/download-artifact@v3
      with:
        name: ${{ inputs.name }}
        path: ${{ inputs.path }}