Merge branch 'paste' of git.dn42.dev:dn42/go-paste into paste

This commit is contained in:
Xuu 2020-08-31 12:36:16 -06:00
commit a55162b6b4
Signed by: xuu
GPG Key ID: 8B3B0604F164E04F
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,16 +33,17 @@ 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