runner test
This commit is contained in:
parent
130dc27efa
commit
466140ef4f
1 changed files with 27 additions and 0 deletions
27
.forgejo/workflows/build.yaml
Normal file
27
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,27 @@
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- release
|
||||
jobs:
|
||||
Godot:
|
||||
runs-on: linux_amd64
|
||||
strategy:
|
||||
matrix:
|
||||
platform: [linux, windows]
|
||||
steps:
|
||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||
with:
|
||||
lfs: true
|
||||
- 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 }}
|
Loading…
Reference in a new issue