diff --git a/.github/workflows/custom/after-install/action.yml b/.github/workflows/custom/after-install/action.yml index 617e42212..d08148534 100644 --- a/.github/workflows/custom/after-install/action.yml +++ b/.github/workflows/custom/after-install/action.yml @@ -20,11 +20,26 @@ runs: with: detached: true + - name: Environment before RUNNER_TEMP + run: | + env | sort + shell: bash + + - name: Set RUNNER_TEMP + run: | + echo "RUNNER_TEMP=${{ runner.temp }} | tee -a $GITHUB_ENV + shell: bash + + - name: Environment after RUNNER_TEMP + run: | + env | sort + shell: bash + - name: Download DuckDB binary run: | # FIXME: only for stable version, other code for dynamic version - tempdir <- "${{ runner.temp }}" + tempdir <- Sys.getenv("RUNNER_TEMP") runner_os <- "${{ runner.os }}" if (runner_os == "Linux") { file <- "libduckdb-linux-amd64.zip"