From d2f4c67301173f915f7954907e09eb00224a7649 Mon Sep 17 00:00:00 2001 From: alexlavrov Date: Wed, 12 Jun 2024 18:01:06 +0400 Subject: [PATCH] Set GITHUB_OUTPUT var correctly in powershell --- .github/workflows/build-aspnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-aspnet.yml b/.github/workflows/build-aspnet.yml index 7649fdc37b0..6026c80d7bd 100644 --- a/.github/workflows/build-aspnet.yml +++ b/.github/workflows/build-aspnet.yml @@ -24,7 +24,7 @@ jobs: id: get_version run: | $env:version=$(node -p -e "require('./package.json').version.slice(0, 4).replace('.', '_')") - echo "version=$env:version" >> $GITHUB_OUTPUT + echo "version=$env:version" >> $Env:GITHUB_OUTPUT - name: Clone devextreme-aspnet repo uses: actions/checkout@v4