Skip to content

"Reset to Center" and "Zoom to Drawing" Functions #322

"Reset to Center" and "Zoom to Drawing" Functions

"Reset to Center" and "Zoom to Drawing" Functions #322

Workflow file for this run

name: "build"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
GODOT_VERSION: 4.3
EXPORT_NAME: Lorien
LORIEN_VERSION: v0.7.0-dev
jobs:
windows-export:
name: Windows Export
runs-on: ubuntu-latest
container:
image: docker://barichello/godot-ci:4.3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
run: |
mkdir -v -p build/${EXPORT_NAME}_${LORIEN_VERSION}_Windows
mkdir -v -p ~/.local/share/godot/export_templates
mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable
- name: Build
run: |
cd lorien
godot --headless -v --export-release "Windows Desktop" ../build/${EXPORT_NAME}_${LORIEN_VERSION}_Windows/${EXPORT_NAME}_${LORIEN_VERSION}.exe
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Lorien Windows
path: build/${{ env.EXPORT_NAME }}_${{ env.LORIEN_VERSION }}_Windows
retention-days: 14
linux-export:
name: Linux Export
runs-on: ubuntu-latest
container:
image: docker://barichello/godot-ci:4.3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
run: |
mkdir -v -p build/${EXPORT_NAME}_${LORIEN_VERSION}_Linux
mkdir -v -p ~/.local/share/godot/export_templates
mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable
- name: Build
run: |
cd lorien
godot --headless -v --export-release "Linux" ../build/${EXPORT_NAME}_${LORIEN_VERSION}_Linux/${EXPORT_NAME}_${LORIEN_VERSION}.x86_64
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Lorien Linux
path: build/${{ env.EXPORT_NAME }}_${{ env.LORIEN_VERSION }}_Linux
retention-days: 14
mac-export:
name: Mac Export
runs-on: ubuntu-latest
container:
image: docker://barichello/godot-ci:4.3
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
run: |
mkdir -v -p build/${EXPORT_NAME}_${LORIEN_VERSION}_Mac
mkdir -v -p ~/.local/share/godot/export_templates
mv /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable
- name: Build
run: |
cd lorien
godot --headless -v --export-release "macOS" ../build/${EXPORT_NAME}_${LORIEN_VERSION}_Mac/${EXPORT_NAME}_${LORIEN_VERSION}.zip
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Lorien Mac
path: build/${{ env.EXPORT_NAME }}_${{ env.LORIEN_VERSION }}_Mac
retention-days: 14