StickerClone/.forgejo/workflows/build.yaml
LUCASTUCIOUS 2c46d17a49
Some checks failed
/ Godot (linux) (push) Failing after 0s
/ Godot (windows) (push) Failing after 0s
/ test (push) Successful in 0s
test
2024-07-25 23:07:20 +02:00

27 lines
No EOL
640 B
YAML

on:
push:
branches:
- main
- release
jobs:
Godot:
runs-on: linux_amd64
strategy:
matrix:
platform: [linux, windows]
steps:
- uses: actions/checkout
with:
lfs: true
- name: Build
id: build
uses: manleydev/build-godot-action@v1.4.1
with:
name: StickerClone
preset: ${{ matrix.platform }}
debugMode: "false"
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: Client - ${{ matrix.platform }}
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}