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 +++++++++++++++++ version/version.go | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yml 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-* diff --git a/version/version.go b/version/version.go index b6a0ed1..5ab05ea 100644 --- a/version/version.go +++ b/version/version.go @@ -3,4 +3,4 @@ package version -const Version = "0.8.0-dev.4" +const Version = "0.8.0-dev.5" -- cgit v1.2.3