diff options
| author | Konstantin Lebedev <lebedev_k@tochka.com> | 2020-11-19 18:16:44 +0500 |
|---|---|---|
| committer | Konstantin Lebedev <lebedev_k@tochka.com> | 2020-11-19 18:16:44 +0500 |
| commit | 27e73de7975ff9f097bbfd8d2717aa27931f25b5 (patch) | |
| tree | 802f8cf0f7cc6834e03a24700a8d07a218f5bd86 /.github/workflows | |
| parent | e1190b3224638616cf4e1318ddcba0b1575f2130 (diff) | |
| parent | da04bb3d1bb60d92fdacfb2edd8c8bdba2643038 (diff) | |
| download | seaweedfs-27e73de7975ff9f097bbfd8d2717aa27931f25b5.tar.xz seaweedfs-27e73de7975ff9f097bbfd8d2717aa27931f25b5.zip | |
Merge branch 'upstream_master' into store_s3cred
# Conflicts:
# weed/s3api/filer_util.go
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 38 |
1 files changed, 25 insertions, 13 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 346837c7c..521418e2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,8 +3,6 @@ name: Release on: push: branches: [ master ] - pull_request: - branches: [ master ] jobs: @@ -16,14 +14,28 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 -# - name: Go Release Binaries -# uses: wangyoucao577/go-release-action@v1.8 -# with: -# github_token: ${{ secrets.GITHUB_TOKEN }} -# goos: linux # default is -# goarch: amd64 # default is -# build_flags: -tags 5BytesOffset # optional, default is -# ldflags: -extldflags -static -X github.com/chrislusf/seaweedfs/weed/util.COMMIT=${{github.sha}} -# # Where to run `go build .` -# project_path: weed -# binary_name: weed-large-disk + - name: Go Release Binaries + uses: wangyoucao577/go-release-action@v1.10 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + goos: linux # default is + goarch: amd64 # default is + release_tag: dev + overwrite: true + build_flags: -tags 5BytesOffset # optional, default is + ldflags: -extldflags -static -X github.com/chrislusf/seaweedfs/weed/util.COMMIT=${{github.sha}} + # Where to run `go build .` + project_path: weed + binary_name: weed-large-disk + - name: Go Release Binaries + uses: wangyoucao577/go-release-action@v1.10 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + goos: linux # default is + goarch: amd64 # default is + release_tag: dev + overwrite: true + ldflags: -extldflags -static -X github.com/chrislusf/seaweedfs/weed/util.COMMIT=${{github.sha}} + # Where to run `go build .` + project_path: weed + binary_name: weed |
