From 9a2b2f49a5e1748ca4e095118e663ef025c5b87d Mon Sep 17 00:00:00 2001 From: martin frances Date: Tue, 12 Sep 2023 21:00:09 +0100 Subject: [PATCH] Chore: Resolve "environment variable" notice in the github build artifacts (#7800) Co-authored-by: Amr Bashir --- .github/workflows/udeps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/udeps.yml b/.github/workflows/udeps.yml index 4bc01cf6c..e856b1a16 100644 --- a/.github/workflows/udeps.yml +++ b/.github/workflows/udeps.yml @@ -115,7 +115,7 @@ jobs: if [ "${UTILS}" == "true" ]; then crates[${#crates[@]}]="\"./core/tauri-utils\""; fi if [ "${BUNDLER}" == "true" ]; then crates[${#crates[@]}]="\"./tooling/bundler\""; fi if [ "${CLI}" == "true" ]; then crates[${#crates[@]}]="\"./tooling/cli\""; fi - echo ::set-output name=matrix::[$crates] + echo "matrix=[$crates]" >> "$GITHUB_OUTPUT" outputs: matrix: ${{ steps.create-matrix.outputs.matrix }}