godot/.github/actions/download-artifact/action.yml
Rémi Verschelde 5985f2bb82
CI: Update actions to latest versions
(cherry picked from commit ad8d3cf1c9)
2024-03-11 15:00:41 +01:00

19 lines
447 B
YAML

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@v4
with:
name: ${{ inputs.name }}
path: ${{ inputs.path }}