-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
90 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# This is an example goreleaser.yaml file with some sane defaults. | ||
# Make sure to check the documentation at http://goreleaser.com | ||
env: | ||
- GO111MODULE=on | ||
before: | ||
hooks: | ||
# you may remove this if you don't use vgo | ||
- go mod tidy | ||
# you may remove this if you don't need go generate | ||
#- go generate ./... | ||
builds: | ||
- env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
goarch: | ||
- amd64 | ||
archives: | ||
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' | ||
replacements: | ||
linux: Linux | ||
amd64: x86_64 | ||
nfpms: | ||
- name_template: "{{ .ProjectName }}-{{ .Version }}.{{ .Arch }}" | ||
replacements: | ||
amd64: x86_64 | ||
homepage: https://soh.re | ||
description: Update internet.bs for dynamic IP | ||
maintainer: Jonathan Seth Mainguy <[email protected]> | ||
license: GPLv2 | ||
vendor: Jmainguy | ||
formats: | ||
- deb | ||
- rpm | ||
checksum: | ||
name_template: 'checksums.txt' | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
language: go | ||
addons: | ||
apt: | ||
packages: | ||
- rpm | ||
env: | ||
matrix: | ||
- GO111MODULE="on" | ||
global: | ||
secure: omhuuoD7ZGl+7PZw/JXmkBCBvhI3ZJBp4Ez/MMvBnh/5a9FAUBh5LM2DMozhXjj3a21WWI2XgK82H38mMrUcWD0XLbNsfRgqg+GJggBi6PT+rF8qFLCvs2hVFsaD6JFF8UBtr6XzrNnVNCOGyquZnaZLAGasPBwou1X7V6Mq0LHtSxTumk4TsTNysc1J+6NQRirzNix9vc7NnQ6Pcz5O0IuccQ1nrcBmUTBTlNqX/jol3bNe8Gh9R88atlKIanYZNFQDnFC6OREWDLyRCQt5KiPeJ+KXnY03jQe9+GyH0YEJ3WVX4oVPNY50AwUfQ2LMIuVZaVjKcQ8GOW+bm7iKnSFxNpOXvJcIWjbiznAhXV1e4XZmdRjFNvYjLMUO+EDT+BpZtN2isvkoIdWTHZ8f+kxPcFXbGjWrnkr1+H2cddXY3T1G6D/hbbSMPFXaY722oKMOxr9EmRwdMtwApFLqI//gevZA8RScmy4kguzIIiVg80KoaDmBftxU1UkezM1fZgn8Pu0TKKAjR3G/5v36UhrZYUUCsGVZopjG/YW4pkx6aPZcRSLUkQPqOUIxwRJtfcagfHPfg8drEJGjchD7dx8py8OWSWic2WVp32FXwLjmmkEwUi4l2l5Guv/LebYMtARppuAfFqkYDG94QG5sSUzO6ikkqWexvMcN0nOb8QQ= | ||
install: | ||
after_success: | ||
deploy: | ||
- provider: script | ||
skip_cleanup: true | ||
script: curl -sL https://git.io/goreleaser | bash | ||
on: | ||
tags: true | ||
condition: "$TRAVIS_OS_NAME = linux" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module github.com/jmainguy/ibsdns | ||
|
||
go 1.12 | ||
|
||
require ( | ||
github.com/ghodss/yaml v1.0.0 | ||
gopkg.in/yaml.v2 v2.2.4 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= | ||
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||
gopkg.in/yaml.v2 v2.2.4 h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I= | ||
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters