From 2185748435bf7de70b3942aea256678f59769823 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 11 Mar 2026 20:33:44 +0000 Subject: [PATCH] upd shell --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 78ca568..4d76029 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,21 +77,21 @@ jobs: shell: bash - name: Install dependencies - shell: pwsh + shell: bash run: | # Install project dependencies poetry install --with build # Verify PyInstaller is available - Write-Host "Verifying PyInstaller installation..." + echo "Verifying PyInstaller installation..." poetry show pyinstaller - name: Get Poetry executable path - shell: pwsh + shell: bash run: | - $poetryPath = Get-Command poetry | Select-Object -ExpandProperty Source - Write-Host "Poetry path: $poetryPath" - echo "POETRY_BIN=$poetryPath" >> $env:GITHUB_ENV + poetryPath=$(which poetry) + echo "Poetry path: $poetryPath" + echo "POETRY_BIN=$poetryPath" >> $GITHUB_ENV - name: Build artifacts with dynamic taskfile run: task --taskfile Taskfile.dynamic.yml build-all