We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7770668 commit 4d5d6e0Copy full SHA for 4d5d6e0
.github/workflows/update_winget.yml
@@ -217,8 +217,10 @@ jobs:
217
run: |
218
$VERSION = "${{ steps.version.outputs.version }}"
219
220
+ # TODO: TEMPORARY - Remove this comment before merging to main
221
# Determine if this is a test run (push event = dry run)
- $IS_DRY_RUN = $env:EVENT_NAME -eq "push"
222
+ # $IS_DRY_RUN = $env:EVENT_NAME -eq "push"
223
+ $IS_DRY_RUN = $false # TEMPORARY: Force production mode for testing
224
225
if ($IS_DRY_RUN) {
226
Write-Host "🧪 TEST MODE: Running in DRY RUN (will not create PR to winget-pkgs)"
0 commit comments