tools for exporting godot projects via Github Actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name: Setup
description: Setup godot and repo
runs:
using: "composite"
steps:
- name: Checkout
uses: actions/checkout@v2
with:
lfs: true
submodules: recursive
- name: Setup
run: |
mkdir -v -p ~/.local/share/godot/templates
mv /root/.local/share/godot/templates/${GODOT_VERSION}.stable ~/.local/share/godot/templates/${GODOT_VERSION}.stable
shell: bash
|