godot/.github/actions/download-artifact/action.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
443 B
YAML
Raw Normal View History

name: Download Godot artifact
description: Download the Godot artifact.
2024-07-08 15:41:20 +00:00
inputs:
name:
description: The artifact name.
2024-07-08 15:41:20 +00:00
default: ${{ github.job }}
path:
description: The path to download and extract to.
required: true
2024-07-08 15:41:20 +00:00
default: ./
runs:
2024-07-08 15:41:20 +00:00
using: composite
steps:
- name: Download Godot Artifact
uses: actions/download-artifact@v4
with:
name: ${{ inputs.name }}
path: ${{ inputs.path }}