Files
gotify-cli/.travis.yml
Rui Chen 0cae1bbe07 deps: upgrade to use go1.18
Signed-off-by: Rui Chen <rui@chenrui.dev>
2022-07-08 19:45:09 -04:00

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