From 65564135018fd8b501a0f0fe71f18d5e0645045d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Grill?= Date: Wed, 16 Oct 2024 08:48:15 +0200 Subject: [PATCH] allow executing thrift from workspace --- .github/workflows/client.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index d840944..9b6ad30 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -54,9 +54,11 @@ jobs: go install github.com/akavel/rsrc@latest go install github.com/minio/minio@latest go install github.com/minio/mc@latest - curl -o thrift.exe --output-dir '${{ runner.tool_cache }}' 'https://dlcdn.apache.org/thrift/0.21.0/thrift-0.21.0.exe' + curl -o thrift.exe 'https://dlcdn.apache.org/thrift/0.21.0/thrift-0.21.0.exe' - name: Generate + env: + NoDefaultCurrentDirectoryInExePath: ${{ github.workspace }} run: go generate ./... - name: Test