Martijn de Boer
16c87db06c
All checks were successful
continuous-integration/drone/push Build is passing
26 lines
No EOL
548 B
YAML
26 lines
No EOL
548 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: lint
|
|
image: registry.gitlab.com/pipeline-components/luacheck:latest
|
|
commands:
|
|
- luacheck --std +love -g -u -t .
|
|
- name: build
|
|
image: bash
|
|
commands:
|
|
- apk update
|
|
- apk upgrade
|
|
- apk --no-cache add curl zip git
|
|
- chmod +x tools/build.sh
|
|
- bash tools/build.sh
|
|
- ls release
|
|
# - name: release
|
|
# image: plugins/gitea-release
|
|
# settings:
|
|
# api_key:
|
|
# from_secret: gitea_api
|
|
# base_url: https://git.biggetje.net
|
|
# files: release/*
|
|
# prerelease: true |