diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 21:20:26 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 21:20:26 -0400 |
commit | b4e78e5000b4c9be267a1779573a272caac3e070 (patch) | |
tree | 826168c612f82de4182167e40764b55ffdb7537b /.github | |
parent | 6429947410002c6d290c95e90a910daac382f235 (diff) |
.github/workflows: add release.yml
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-* |