mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
26aa4765d1
Uses upload-artifact to share them with other jobs but deletes them when done.
17 lines
521 B
YAML
17 lines
521 B
YAML
name: Import assets
|
|
inputs:
|
|
godot-version:
|
|
required: true
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup Godot
|
|
uses: lihop/setup-godot@4aad9daa7dd81c11329c4b54fdc26dbd39eea7d6
|
|
with:
|
|
version: ${{ inputs.godot-version }}
|
|
- name: Import assets
|
|
shell: bash
|
|
run: |
|
|
# HACK: See https://github.com/godotengine/godot-proposals/issues/1362.
|
|
(for i in {1..4}; do godot --editor --headless & sleep 5 && .github/actions/import-assets/monitor_import.sh; done) || true
|
|
|