Skip to content

Commit

Permalink
update deps, add more releases
Browse files Browse the repository at this point in the history
  • Loading branch information
honwen committed Mar 4, 2022
1 parent 2ee6f53 commit 4412268
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: 1.17.6
go-version: 1.17.8

- name: Prepare environment
run: |-
Expand All @@ -45,6 +45,7 @@ jobs:
- run: GOOS=linux GOARCH=amd64 VERSION=${RELEASE_VERSION} make release

# Linux ARM
- run: GOOS=linux GOARCH=arm GOARM=5 VERSION=${RELEASE_VERSION} make release
- run: GOOS=linux GOARCH=arm GOARM=6 VERSION=${RELEASE_VERSION} make release
- run: GOOS=linux GOARCH=arm64 VERSION=${RELEASE_VERSION} make release

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016-2021 honwen
Copyright (c) 2016-2022 honwen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

### Usage

```bash
```shell
$ docker pull chenhw2/aliyun-ddns-cli

$ docker run -d \
Expand All @@ -30,7 +30,7 @@ $ docker run -d \

### Help

```
```shell
$ docker run --rm chenhw2/aliyun-ddns-cli -h
NAME:
aliddns - aliyun-ddns-cli
Expand Down Expand Up @@ -65,7 +65,7 @@ GLOBAL OPTIONS:
### CLI Example:
```
```shell
aliddns --id ${AccessKeyID} --secret ${AccessKeySecret} \
auto-update --domain ddns.example.win

Expand Down
28 changes: 26 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,35 @@
module github.com/honwen/aliyun-ddns-cli

go 1.16
go 1.17

require (
github.com/denverdino/aliyungo v0.0.0-20211216041018-95e021eb8eb7
github.com/denverdino/aliyungo v0.0.0-20220218060649-7450266b1c04
github.com/honwen/golibs v0.2.5
github.com/honwen/ip2loc v0.2.0
github.com/stretchr/testify v1.7.0
github.com/urfave/cli v1.22.5
)

require (
github.com/AdguardTeam/golibs v0.4.2 // indirect
github.com/PuerkitoBio/goquery v1.7.1 // indirect
github.com/Workiva/go-datastructures v1.0.53 // indirect
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
github.com/aead/poly1305 v0.0.0-20180717145839-3fee0db0b635 // indirect
github.com/ameshkov/dnscrypt/v2 v2.2.1 // indirect
github.com/ameshkov/dnsstamps v1.0.3 // indirect
github.com/andybalholm/cascadia v1.2.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/miekg/dns v1.1.43 // indirect
github.com/mr-karan/doggo v0.4.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rakyll/statik v0.1.7 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/sirupsen/logrus v1.7.0 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:ma
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/denverdino/aliyungo v0.0.0-20211216041018-95e021eb8eb7 h1:3x/qbhudvljDh48e2LORoL0Id2mXG7GkcK0rSf3qdHA=
github.com/denverdino/aliyungo v0.0.0-20211216041018-95e021eb8eb7/go.mod h1:VVxx1gyGhdt369208nKOYLI0PVgrZqbU+EuWBZJQ1ZQ=
github.com/denverdino/aliyungo v0.0.0-20220218060649-7450266b1c04 h1:cM8K5uXYMxNMmoh1ogXr/aa3LtbT7pvWQhQLOqpTM84=
github.com/denverdino/aliyungo v0.0.0-20220218060649-7450266b1c04/go.mod h1:VVxx1gyGhdt369208nKOYLI0PVgrZqbU+EuWBZJQ1ZQ=
github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM=
github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M=
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
Expand Down

0 comments on commit 4412268

Please sign in to comment.