This commit is contained in:
parent
2abecce963
commit
275f9d034d
3 changed files with 7 additions and 4 deletions
|
@ -10,10 +10,8 @@ steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: bash
|
image: bash
|
||||||
commands:
|
commands:
|
||||||
- bash
|
- chmod +x build.sh
|
||||||
- chmod +x tools/boon/boon
|
- bash build.sh
|
||||||
- ./tools/boon/boon love download 11.3
|
|
||||||
- ./tools/boon/boon build .
|
|
||||||
- name: release
|
- name: release
|
||||||
image: plugins/gitea-release
|
image: plugins/gitea-release
|
||||||
settings:
|
settings:
|
||||||
|
|
|
@ -23,6 +23,7 @@ ignore_list = [
|
||||||
|
|
||||||
# Boon-specific files and directories
|
# Boon-specific files and directories
|
||||||
"Boon.toml",
|
"Boon.toml",
|
||||||
|
"build.sh",
|
||||||
"release",
|
"release",
|
||||||
"tools",
|
"tools",
|
||||||
".drone.yml",
|
".drone.yml",
|
||||||
|
|
4
build.sh
Normal file
4
build.sh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
chmod +x tools/boon/boon
|
||||||
|
./tools/boon/boon love download 11.3
|
||||||
|
./tools/boon/boon build .
|
Loading…
Reference in a new issue