Fix Drone confiuration and add gitignore.

This commit is contained in:
Stanislav Nikitin 2021-11-20 03:36:00 +05:00
parent 3054f129ce
commit 42285d35d4
Signed by: pztrn
GPG Key ID: 1E944A0F0568B550
2 changed files with 3 additions and 29 deletions

View File

@ -4,15 +4,6 @@ type: docker
name: build
steps:
- name: notify-start
image: pztrn/discordrone
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_secret
message: 'Starting building **{{repo.name}}#{{build.number}}@{{commit.sha}}** @ {{datetime build.started "02-Jan-2006 15:04:05 MST" "Asia/Yekaterinburg"}} (See {{build.link}} for logs).'
- name: lint
image: golangci/golangci-lint:latest
environment:
@ -46,23 +37,3 @@ steps:
depends_on:
- test
- lint
- name: notify-end
when:
status:
- success
- failure
image: pztrn/discordrone
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_secret
message: "
{{#success build.status}}
**{{repo.name}}#{{build.number}}@{{commit.sha}}** built in {{since build.startedint}} and pushed to hub.docker.com.
{{ else }}
**{{repo.name}}#{{build.number}}@{{commit.sha}}** failed. See {{build.link}}.
{{/success}}"
depends_on:
- docker

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.idea
.vscode
*DS_Store*