diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 17 |
1 files changed, 17 insertions, 0 deletions
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-* |