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
|
||||
image: bash
|
||||
commands:
|
||||
- bash
|
||||
- chmod +x tools/boon/boon
|
||||
- ./tools/boon/boon love download 11.3
|
||||
- ./tools/boon/boon build .
|
||||
- chmod +x build.sh
|
||||
- bash build.sh
|
||||
- name: release
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
|
|
|
@ -23,6 +23,7 @@ ignore_list = [
|
|||
|
||||
# Boon-specific files and directories
|
||||
"Boon.toml",
|
||||
"build.sh",
|
||||
"release",
|
||||
"tools",
|
||||
".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