mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
23 lines
478 B
YAML
23 lines
478 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@v4
|
|
with:
|
|
name: ${{ inputs.name }}
|
|
path: ${{ inputs.path }}
|
|
# Default is 90 days.
|
|
retention-days: 60
|