mirror of
https://github.com/gotify/cli.git
synced 2024-01-28 15:20:39 +03:00
22 lines
266 B
YAML
22 lines
266 B
YAML
language: go
|
|
go:
|
|
- "1.18.x"
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
script:
|
|
- go test ./...
|
|
|
|
before_deploy:
|
|
- GIT_TAG=$TRAVIS_TAG make clean build
|
|
|
|
deploy:
|
|
- provider: releases
|
|
api_key: $GH_TOKEN
|
|
file_glob: true
|
|
file: build/*
|
|
skip_cleanup: true
|
|
on:
|
|
tags: true
|