From f37a63b6671401600ba7b25aa4f9131bb7011c93 Mon Sep 17 00:00:00 2001 From: MatteoPologruto Date: Thu, 23 Oct 2025 10:02:30 +0200 Subject: [PATCH] Revert task changes and install it using github action --- .github/workflows/release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b025eff..af98bc2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,8 +51,14 @@ jobs: with: go-version-file: go.mod + - name: Install Taskfile + uses: arduino/setup-task@v2 + with: + version: "3.x" + repo-token: ${{ secrets.GITHUB_TOKEN }} + - name: Build Binary - run: go tool task build + run: task build env: GOARCH: ${{ matrix.arch }} GOOS: ${{ matrix.os }}