diff options
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 67249da..fe15fa0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,15 +3,15 @@ on: workflow_dispatch 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-* + 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-* |