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