summaryrefslogtreecommitdiffstats
path: root/.github/actions/download-artifact
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-07-08 10:41:20 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-09-13 08:06:53 -0500
commit41a81f5360d231b4da75ef6debf42bdb39404b78 (patch)
treed5b8138905446635f8e08c413e77fc085ff4e44e /.github/actions/download-artifact
parent74de05a01c8716a42d4e3427f607d7bea76b35e5 (diff)
downloadredot-engine-41a81f5360d231b4da75ef6debf42bdb39404b78.tar.gz
Style: Format yaml files
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