Skip to content

windows

windows #1

# This is a basic workflow to help you get started with Actions
name: windows
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
repository: godotengine/godot
path: godot
ref: 4.2
- uses: actions/checkout@v4
with:
repository: ialex32x/GodotJS
path: godot/modules/GodotJS
lfs: true
- uses: actions/setup-python@v5
with:
python-version: '3.12'
# Runs a single command using the runners shell
- name: Prerequisites
run: pip install scons
- name: Build Deps
run: echo nothing here for now
# Runs a set of commands using the runners shell
- name: Build Godot
run: |
cd godot
scons dev_build=yes p=windows
- name: Upload
uses: actions/upload-artifact@v4
with:
path: godot/bin/*.*
name: prebuilt_godot_editor_windows