diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 869fde6..c91e176 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -3,14 +3,18 @@ on: [push] jobs: build: runs-on: ubuntu-latest + container: + image: barichello/godot-ci:4.6.2 steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Find templates - continue-on-error: true - run: find / -maxdepth 8 -name "export_templates" -type d 2>/dev/null + - name: Setup export templates + run: | + mkdir -p ~/.local/share/godot/export_templates/4.6.2.stable + cp -r /root/.local/share/godot/export_templates/4.6.2.stable/. ~/.local/share/godot/export_templates/4.6.2.stable/ + - name: Get build number run: echo "BUILD_NUM=$(git rev-list --count HEAD)" >> $GITHUB_ENV