deb6025781
This ensures that the godot-cpp job has plenty of resources to run its build and avoid being affected by the main build. Additionally: - Extract test tasks into dedicated actions. - Upload artifacts as early as possible. - Ensure that we check master cache before random cache.
18 lines
447 B
YAML
18 lines
447 B
YAML
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
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: ${{ inputs.name }}
|
|
path: ${{ inputs.path }}
|