From 83caf6c979575f88b6a6fc3e422e91ce90baf5cc Mon Sep 17 00:00:00 2001 From: Nico D'Cotta <45274424+Cottand@users.noreply.github.com> Date: Thu, 16 Nov 2023 10:04:18 -0100 Subject: [PATCH] chore(CI): add workflow for releasing compiled binaries for darwin,linux (#38) --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yml 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