summaryrefslogtreecommitdiffstats
path: root/.github/actions/download-artifact
diff options
context:
space:
mode:
Diffstat (limited to '.github/actions/download-artifact')
-rw-r--r--.github/actions/download-artifact/action.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/actions/download-artifact/action.yml b/.github/actions/download-artifact/action.yml
index 534b3251c5..c2a3d777c4 100644
--- a/.github/actions/download-artifact/action.yml
+++ b/.github/actions/download-artifact/action.yml
@@ -1,15 +1,17 @@
name: Download Godot artifact
description: Download the Godot artifact.
+
inputs:
name:
description: The artifact name.
- default: "${{ github.job }}"
+ default: ${{ github.job }}
path:
description: The path to download and extract to.
required: true
- default: "./"
+ default: ./
+
runs:
- using: "composite"
+ using: composite
steps:
- name: Download Godot Artifact
uses: actions/download-artifact@v4