updated powershell in reindex_on_merge

This commit is contained in:
2025-06-06 17:57:47 -05:00
parent 7b8cafc184
commit 4327e1c581
+3 -3
View File
@@ -14,14 +14,14 @@ jobs:
# This condition ensures the job only runs if the pull request was actually merged. # This condition ensures the job only runs if the pull request was actually merged.
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
# This tells GitHub to run this job on one of your self-hosted runners.
runs-on: Windows runs-on: Windows
# *** KEY CHANGE *** # *** KEY CHANGE ***
# Set the default shell to PowerShell, which is native to your Windows runner. # Changed the shell from 'pwsh' to 'powershell' to use the default
# Windows PowerShell, which should be available on your runner.
defaults: defaults:
run: run:
shell: pwsh shell: powershell
steps: steps:
# Step 1: Check out the repository's code # Step 1: Check out the repository's code