From b4e78e5000b4c9be267a1779573a272caac3e070 Mon Sep 17 00:00:00 2001 From: siddharth ravikumar Date: Fri, 20 Sep 2024 21:20:26 -0400 Subject: .github/workflows: add release.yml --- .github/workflows/release.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/release.yml (limited to '.github/workflows') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..91b078d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,17 @@ +name: Build binaries +on: workflow_call +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: '1.23' + check-latest: true + - run: curl -O https://ricketyspace.net/go/build.sh + - run: sh build.sh fern + - uses: actions/upload-artifact@v4 + with: + name: fern-binaries + path: fern-* -- cgit v1.2.3