From 52a5b1c79203eb0119f6875f8407834badab1d2e Mon Sep 17 00:00:00 2001 From: nornen0202 Date: Mon, 6 Apr 2026 08:56:23 +0900 Subject: [PATCH] Use Windows PowerShell in scheduled workflow --- .github/workflows/daily-codex-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/daily-codex-analysis.yml b/.github/workflows/daily-codex-analysis.yml index 28460dac..5107d3e5 100644 --- a/.github/workflows/daily-codex-analysis.yml +++ b/.github/workflows/daily-codex-analysis.yml @@ -51,13 +51,13 @@ jobs: python-version: "3.13" - name: Install TradingAgents - shell: pwsh + shell: powershell run: | python -m pip install --upgrade pip python -m pip install -e . - name: Verify Codex login and model availability - shell: pwsh + shell: powershell run: | $workspaceDir = Join-Path $env:GITHUB_WORKSPACE ".codex-preflight" $script = @( @@ -75,7 +75,7 @@ jobs: $script | python - - name: Run scheduled analysis and build site - shell: pwsh + shell: powershell run: | $configPath = "config/scheduled_analysis.toml" if (-not (Test-Path $configPath)) {