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: steps:
- name: Setup - name: Setup
commands: commands:
- git fetch origin --tags
- make setup - make setup
- name: Test - name: Test
commands: commands:
- make test - make test
trigger: trigger:
event: event:
- push - push
@ -31,16 +33,17 @@ platform:
steps: steps:
- name: Setup - name: Setup
commands: commands:
- git fetch origin --tags
- make setup - make setup
- name: Build Release - name: Build Release
commands: commands:
- cd debian - cd debian
- make release
- make build - make build
- make copy - make copy
- make deploy - make deploy
- make tag
trigger: trigger:
event: event:
- promote - promote
... ...

1
debian/Makefile vendored
View File

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