Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
spiritysdx committed Jul 4, 2024
1 parent 5de0e97 commit b4e9e17
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.22.4

Expand All @@ -30,11 +30,11 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GHT }}

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --clean
args: release
env:
GITHUB_TOKEN: ${{ secrets.GHT }}
GOPRIVATE: github.com/oneclickvirt/security
4 changes: 3 additions & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: 2
before:
hooks:
- go mod tidy -v
Expand Down Expand Up @@ -26,6 +25,7 @@ builds:
ignore:
- goos: windows
goarch: arm
main: ./
binary: goecs
- id: darwin-amd64
env:
Expand All @@ -38,6 +38,7 @@ builds:
- darwin
goarch:
- amd64
main: ./
binary: goecs
- id: darwin-arm64
env:
Expand All @@ -50,6 +51,7 @@ builds:
- darwin
goarch:
- arm64
main: ./
binary: goecs
universal_binaries:
- name_template: "goecs"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Shell版本: https://github.com/spiritLHLS/ecs

## 适配系统和架构

编译支持的架构: amd64、arm、arm64、386、s390x、ppc64、ppc64le、riscv64、mips、mips64、mipsle、mips64le、loong64
编译支持的架构: amd64、arm、arm64、386、s390x、ppc64、ppc64le、riscv64

测试支持的架构: amd64、arm64

Expand Down
2 changes: 1 addition & 1 deletion README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Shell version: https://github.com/spiritLHLS/ecs/blob/main/README_EN.md

## Supported Systems and Architectures

Architectures supported for compilation: amd64, arm, arm64, 386, s390x, ppc64, ppc64le, riscv64, mips, mips64, mipsle, mips64le, loong64
Architectures supported for compilation: amd64, arm, arm64, 386, s390xppc64ppc64leriscv64

Tested architectures: amd64, arm64

Expand Down
2 changes: 1 addition & 1 deletion goecs.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (
)

var (
ecsVersion = "v0.0.42"
ecsVersion = "v0.0.47"
menuMode bool
onlyChinaTest bool
input, choice string
Expand Down
1 change: 0 additions & 1 deletion update.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ git commit -am"update"

:push
cd %repo_path%
git tag v0.0.46
git push -f origin master
if errorlevel 1 (
echo Push failed. Retrying in 3 seconds...
Expand Down

0 comments on commit b4e9e17

Please sign in to comment.