diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ded993ef4..7fa543851 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -102,6 +102,7 @@ jobs: env: VERGEN_GIT_DESCRIBE: ${{ needs.compute-version.outputs.describe }} SOURCE_DATE_EPOCH: ${{ needs.compute-version.outputs.timestamp }} + ACTIONS_CACHE_SERVICE_V2: 1 permissions: contents: read @@ -119,6 +120,20 @@ jobs: - name: Setup sccache uses: mozilla-actions/sccache-action@v0.0.8 + - run: | + env | while read -r line + do + var_name=$(echo "$line" | cut -d= -f1) + + var_value=$(eval echo "\$$var_name") + + if [ -z "$var_value" ]; then + echo "$var_name: EMPTY" + else + echo "$var_name: NOT EMPTY" + fi + done + - name: Install zig uses: goto-bus-stop/setup-zig@v2 with: