vision/.drone.yml

24 lines
509 B
YAML
Raw Normal View History

2022-10-16 15:13:38 +02:00
kind: pipeline
type: docker
name: default
steps:
2022-10-16 15:18:14 +02:00
- name: lint
image: registry.gitlab.com/pipeline-components/luacheck:latest
commands:
2022-10-16 15:31:54 +02:00
- luacheck --std +love -g -u -t .
2022-10-16 17:07:25 +02:00
- name: build
image: alpine
commands:
2022-10-16 17:22:57 +02:00
- bash
2022-10-16 17:09:43 +02:00
- chmod +x tools/boon/boon
2022-10-16 17:22:57 +02:00
- ./tools/boon/boon love download 11.3
- ./tools/boon/boon build .
2022-10-16 17:07:25 +02:00
- name: release
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_api
base_url: https://git.biggetje.net
files: release/*
prerelease: true