40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
- release
|
||
|
jobs:
|
||
|
Godot:
|
||
|
runs-on: linux_amd64
|
||
|
strategy:
|
||
|
matrix:
|
||
|
platform: [linux, windows]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
lfs: true
|
||
|
- name: Build
|
||
|
id: build
|
||
|
uses: ./.forgejo/actions/build-godot
|
||
|
with:
|
||
|
name: StickerClone
|
||
|
preset: ${{ matrix.platform }}
|
||
|
debugMode: "true"
|
||
|
- name: Upload
|
||
|
uses: actions/upload-artifact@v2
|
||
|
with:
|
||
|
name: Client - ${{ matrix.platform }}
|
||
|
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|
||
|
# - name: Build
|
||
|
# id: build
|
||
|
# uses: https://github.com/yeslayla/build-godot-action@v1.5.0
|
||
|
# 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 }}
|