Skip to content

Commit fa72e77

Browse files
committed
fix: update ci config
1 parent e24f59f commit fa72e77

File tree

4 files changed

+28
-12
lines changed

4 files changed

+28
-12
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@ script:
2727

2828
deploy:
2929
provider: releases
30-
api_key:
31-
secure: ${GITHUB_TOKEN}
30+
token: ${GITHUB_TOKEN}
3231
file_glob: true
3332
file: dist/*
34-
skip_cleanup: true
33+
cleanup: false
3534
on:
3635
tags: true

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
<a name="0.7.0"></a>
2+
## [0.7.0] - 2020-04-21
3+
### Docs
4+
- update readme
5+
6+
### Feat
7+
- update mod dep
8+
- add support `gdb`
9+
10+
<a name="0.6.3"></a>
11+
## [0.6.3] - 2019-12-15
12+
### Fix
13+
- check container is running
14+
- update change log
15+
116
<a name="0.6.2"></a>
217
## [0.6.2] - 2019-06-20
318
### Doc
@@ -179,7 +194,9 @@
179194
- ignore add more
180195

181196

182-
[Unreleased]: https://github.com/zeromake/docker-debug/compare/0.6.2...HEAD
197+
[Unreleased]: https://github.com/zeromake/docker-debug/compare/0.7.0...HEAD
198+
[0.7.0]: https://github.com/zeromake/docker-debug/compare/0.6.3...0.7.0
199+
[0.6.3]: https://github.com/zeromake/docker-debug/compare/0.6.2...0.6.3
183200
[0.6.2]: https://github.com/zeromake/docker-debug/compare/0.6.1...0.6.2
184201
[0.6.1]: https://github.com/zeromake/docker-debug/compare/0.6.0...0.6.1
185202
[0.6.0]: https://github.com/zeromake/docker-debug/compare/0.5.2...0.6.0

README-zh-Hans.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ brew install docker-debug
2626
**下载二进制文件**
2727
``` shell
2828
# MacOS
29-
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3/docker-debug-darwin-amd64
29+
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.7.0/docker-debug-darwin-amd64
3030

3131
# Linux
32-
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3/docker-debug-linux-amd64
32+
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.7.0/docker-debug-linux-amd64
3333

3434
chmod +x ./docker-debug
3535
sudo mv docker-debug /usr/local/bin/
3636

3737
# Windows
38-
curl -Lo docker-debug.exe https://github.com/zeromake/docker-debug/releases/download/0.6.3/docker-debug-windows-amd64.exe
38+
curl -Lo docker-debug.exe https://github.com/zeromake/docker-debug/releases/download/0.7.0/docker-debug-windows-amd64.exe
3939
```
4040

4141
或者到 [release page](https://github.com/zeromake/docker-debug/releases/lastest) 下载最新可执行文件并添加到 PATH。
@@ -64,7 +64,7 @@ docker-debug 使用 `nicolaka/netshoot` 作为默认镜像来运行额外容器
6464
你可以通过命令行 `flag(--image)` 覆盖默认镜像,或者直接修改配置文件 `~/.docker-debug/config.toml` 中的 `image`
6565
``` toml
6666
# 配置文件版本号
67-
version = "0.6.3"
67+
version = "0.7.0"
6868
# 目标容器文件系统挂载点
6969
mount_dir = "/mnt/container"
7070
# 默认镜像

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ brew install docker-debug
2727
**download binary file**
2828
``` shell
2929
# MacOS
30-
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3/docker-debug-darwin-amd64
30+
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.7.0/docker-debug-darwin-amd64
3131

3232
# Linux
33-
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.6.3/docker-debug-linux-amd64
33+
curl -Lo docker-debug https://github.com/zeromake/docker-debug/releases/download/0.7.0/docker-debug-linux-amd64
3434

3535
chmod +x ./docker-debug
3636
sudo mv docker-debug /usr/local/bin/
3737

3838
# Windows
39-
curl -Lo docker-debug.exe https://github.com/zeromake/docker-debug/releases/download/0.6.3/docker-debug-windows-amd64.exe
39+
curl -Lo docker-debug.exe https://github.com/zeromake/docker-debug/releases/download/0.7.0/docker-debug-windows-amd64.exe
4040
```
4141

4242
download the latest binary from the [release page](https://github.com/zeromake/docker-debug/releases/lastest) and add it to your PATH.
@@ -64,7 +64,7 @@ mv docker-debug /usr/local/bin
6464
docker-debug uses nicolaka/netshoot as the default image to run debug container.
6565
You can override the default image with cli flag, or even better, with config file ~/.docker-debug/config.toml
6666
``` toml
67-
version = "0.6.3"
67+
version = "0.7.0"
6868
image = "nicolaka/netshoot:latest"
6969
mount_dir = "/mnt/container"
7070
timeout = 10000000000

0 commit comments

Comments
 (0)