6 Commits

Author SHA1 Message Date
xuu
b308e9fab6 fix 2020-08-29 01:55:57 +00:00
xuu
f8b806f3f4 fix 2020-08-29 01:46:51 +00:00
xuu
47f908ff47 test 2020-08-29 01:32:41 +00:00
xuu
63987f8fa1 test 2020-08-29 01:30:57 +00:00
Xuu
db0878bf44 Update '.drone.yml' 2020-08-29 01:27:29 +00:00
Xuu
a5289500cf Update '.drone.yml' 2020-08-29 01:24:01 +00:00
2 changed files with 5 additions and 3 deletions

View File

@@ -10,11 +10,13 @@ platform:
steps:
- name: Setup
commands:
- git fetch origin --tags
- make setup
- name: Test
commands:
- make test
trigger:
event:
- push
@@ -31,15 +33,16 @@ platform:
steps:
- name: Setup
commands:
- git fetch origin --tags
- make setup
- name: Build Release
commands:
- cd debian
- make release
- make build
- make copy
- make deploy
- make tag
trigger:
event:
- promote

1
debian/Makefile vendored
View File

@@ -12,7 +12,6 @@ clean:
rm -r BUILD/*
tag:
git commit -am "release version $(VERSION)"
git tag -a -m "release version $(VERSION)" "v$(VERSION)"
git push --tags