Skip to content

Commit

Permalink
*: bump version to 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Ehco1996 committed May 7, 2021
1 parent a0047f5 commit e7ecf60
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/normal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.15
- name: Set up Go 1.16
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.16
id: go

- name: Check out code into the Go module directory
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
ci-ci-ci:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.15
- name: Set up Go 1.16
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.16
id: go

- name: Check out code into the Go module directory
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: tag
on:
push:
tags:
- "*"
jobs:
build-tag-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build x86 image
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: ehco1996/ehco
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tag_names: true
dockerfile: build/Dockerfile

- uses: actions/checkout@master
- name: Build arm image
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: ehco1996/ehco
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tag_names: true
dockerfile: build/arm.Dockerfile
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![Go Report Card](https://goreportcard.com/badge/github.com/Ehco1996/ehco)](https://goreportcard.com/report/github.com/Ehco1996/ehco)
[![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)
[![Docker Pulls](https://img.shields.io/docker/pulls/ehco1996/ehco)](https://hub.docker.com/r/ehco1996/ehco)

ehco is a network relay tool and a typo :)

Expand Down
2 changes: 1 addition & 1 deletion internal/constant/constant.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package constant
import "time"

const (
Version = "1.0.5"
Version = "1.0.6"

MaxMWSSStreamCnt = 10
DialTimeOut = 3 * time.Second
Expand Down

0 comments on commit e7ecf60

Please sign in to comment.