diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 165a211..036f07f 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -1,19 +1,20 @@ -on: - push: - tags: - - v* -jobs: - release: - runs-on: lego - steps: - - name: checkout - uses: http://${{secrets.ACTION_ACCESS_GIT}}@git.lovezsh.com/actions/checkout@v4 - - - name: build - uses: https://github.com/actions/setup-go@v5 - with: - go-version: "1.22.4" - run: | - GOOS=linux GOARCH=amd64 go build -o nip cmd/main.go - GOOS=windows GOARCH=amd64 go build -o nip.exe cmd/main.go - +on: + push: + tags: + - v* +jobs: + release: + runs-on: lego + steps: + - name: 检出代码 + uses: http://${{secrets.ACTION_ACCESS_GIT}}@git.lovezsh.com/actions/checkout@v4 + + - name: 设置go环境 + uses: https://github.com/actions/setup-go@v5 + with: + go-version: "1.22.4" + + - name: 编译 + run: | + GOOS=linux GOARCH=amd64 go build -o nip cmd/main.go + GOOS=windows GOARCH=amd64 go build -o nip.exe cmd/main.go \ No newline at end of file