Skip to content

Commit

Permalink
added godot build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kesuaheli committed May 4, 2024
1 parent ce2afb0 commit d97c2fc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build Godot Executeable

on:
push:
branches: main

pull_request:
branches: main

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [windows, linux]
steps:
- uses: actions/checkout@v4
- name: Godot Build
id: build
uses: manleydev/build-godot-action@1.5
with:
name: Quiz4Everyone
preset: ${{ matrix.os }}
debugMode: ${{ github.event_name != 'push' || github.ref != 'main' }}
- name: Artifact
uses: actions/upload-artifact@v4
with:
name: Quiz4Everyone_${{ matrix.os }}
path: ${{ steps.build.outputs.build }}

0 comments on commit d97c2fc

Please sign in to comment.