2023-08-01 20:38:07 +02:00
|
|
|
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
|
2024-02-22 16:22:54 +01:00
|
|
|
uses: actions/download-artifact@v4
|
2023-08-01 20:38:07 +02:00
|
|
|
with:
|
|
|
|
name: ${{ inputs.name }}
|
|
|
|
path: ${{ inputs.path }}
|