From 676abc73acdc81d10b23d49733c249569c3c76b3 Mon Sep 17 00:00:00 2001 From: 0nepeop1e Date: Wed, 12 Jun 2024 17:09:30 +0800 Subject: [PATCH] fix build script --- .gitea/workflows/release.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 2a99693..4f39131 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -10,6 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: setup go + uses: actions/setup-go@v5 + with: + go-version: '>=1.20.1' - uses: oven-sh/setup-bun@v1 with: bun-version: latest @@ -23,5 +27,5 @@ jobs: - uses: https://gitea.com/actions/release-action@main with: files: |- - bin/** + out/** api_key: '${{secrets.RELEASE_TOKEN}}'