diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 49cb5c2..a468ac6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: docker: runs-on: ubuntu-latest strategy: - fail-fast: true + fail-fast: false matrix: platform: - linux/amd64 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..cb23b58 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,34 @@ +name: Build + +on: + release: + types: [created] + +permissions: + contents: write + packages: write + +jobs: + binary: + runs-on: ubuntu-latest + strategy: + matrix: + # build and publish in parallel: linux/386, linux/amd64, linux/arm64, darwin/amd64, darwin/arm64 + goos: [linux, darwin] + goarch: ["386", amd64, arm64] + exclude: + - goarch: "386" + goos: darwin + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v4 + with: + go-version-file: 'go.mod' + - uses: wangyoucao577/go-release-action@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + goos: ${{ matrix.goos }} + goarch: ${{ matrix.goarch }} + goversion: "https://dl.google.com/go/go1.21.1.linux-amd64.tar.gz" + binary_name: "leng" + extra_files: LICENSE README.md