7fe3a0694b
Updates various actions to latest versions:
actions/cache@v3
actions/checkout@v3
actions/upload-artifact@v3
actions/setup-dotnet@v2
actions/setup-java@v3
actions/setup-python@v4
mymindstorm/setup-emsdk@v11
(cherry picked from commit abaa76fcf9
)
20 lines
452 B
YAML
20 lines
452 B
YAML
name: Upload Godot artifact
|
|
description: Upload the Godot artifact.
|
|
inputs:
|
|
name:
|
|
description: The artifact name.
|
|
default: "${{ github.job }}"
|
|
path:
|
|
description: The path to upload.
|
|
required: true
|
|
default: "bin/*"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Upload Godot Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: ${{ inputs.name }}
|
|
path: ${{ inputs.path }}
|
|
retention-days: 14
|