Skip to content

Commit e7ecf60

Browse files
committed
*: bump version to 1.0.6
1 parent a0047f5 commit e7ecf60

File tree

5 files changed

+34
-5
lines changed

5 files changed

+34
-5
lines changed

.github/workflows/normal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Set up Go 1.15
12+
- name: Set up Go 1.16
1313
uses: actions/setup-go@v1
1414
with:
15-
go-version: 1.15
15+
go-version: 1.16
1616
id: go
1717

1818
- name: Check out code into the Go module directory

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
ci-ci-ci:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- name: Set up Go 1.15
12+
- name: Set up Go 1.16
1313
uses: actions/setup-go@v1
1414
with:
15-
go-version: 1.15
15+
go-version: 1.16
1616
id: go
1717

1818
- name: Check out code into the Go module directory

.github/workflows/tag.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: tag
2+
on:
3+
push:
4+
tags:
5+
- "*"
6+
jobs:
7+
build-tag-image:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@master
11+
- name: Build x86 image
12+
uses: elgohr/Publish-Docker-Github-Action@master
13+
with:
14+
name: ehco1996/ehco
15+
username: ${{ secrets.DOCKER_USERNAME }}
16+
password: ${{ secrets.DOCKER_PASSWORD }}
17+
tag_names: true
18+
dockerfile: build/Dockerfile
19+
20+
- uses: actions/checkout@master
21+
- name: Build arm image
22+
uses: elgohr/Publish-Docker-Github-Action@master
23+
with:
24+
name: ehco1996/ehco
25+
username: ${{ secrets.DOCKER_USERNAME }}
26+
password: ${{ secrets.DOCKER_PASSWORD }}
27+
tag_names: true
28+
dockerfile: build/arm.Dockerfile

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![Go Report Card](https://goreportcard.com/badge/github.com/Ehco1996/ehco)](https://goreportcard.com/report/github.com/Ehco1996/ehco)
44
[![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square)](https://pkg.go.dev/github.com/Ehco1996/ehco)
5+
[![Docker Pulls](https://img.shields.io/docker/pulls/ehco1996/ehco)](https://hub.docker.com/r/ehco1996/ehco)
56

67
ehco is a network relay tool and a typo :)
78

internal/constant/constant.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package constant
33
import "time"
44

55
const (
6-
Version = "1.0.5"
6+
Version = "1.0.6"
77

88
MaxMWSSStreamCnt = 10
99
DialTimeOut = 3 * time.Second

0 commit comments

Comments
 (0)