22 lines
461 B
YAML
22 lines
461 B
YAML
name: "build_test"
|
|
on: push
|
|
|
|
env:
|
|
EXPORT_NAME: build
|
|
|
|
jobs:
|
|
export-linux:
|
|
name: linux export
|
|
runs-on: bookworm
|
|
container:
|
|
image: khaganat/godot-export:4.2beta
|
|
steps:
|
|
- name: linux build
|
|
run:
|
|
godot -v --export-debug --headless "Linux/X11" $EXPORT_NAME-linux64-$CI_COMMIT_SHORT_SHA/$EXPORT_NAME.x86_64
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: linux
|
|
|
|
|