fix: remove continue-on-error from CI workflows (#172) #189

Merged
guettlibot merged 1 commits from issue-172-fix into main 2026-05-23 17:05:10 +00:00
guettlibot commented 2026-05-23 17:03:22 +00:00 (Migrated from codeberg.org)

Summary

  • Replace continue-on-error: true on SSH deploy steps in deploy.yml with if: ${{ secrets.SSH_PRIVATE_KEY != '' }} — steps are now skipped (not silently failed) when the secret is absent
  • Remove continue-on-error: true from windows-nightly.yml job and steps (the job is already disabled via if: false)

Closes #172

## Summary - Replace `continue-on-error: true` on SSH deploy steps in `deploy.yml` with `if: ${{ secrets.SSH_PRIVATE_KEY != '' }}` — steps are now skipped (not silently failed) when the secret is absent - Remove `continue-on-error: true` from `windows-nightly.yml` job and steps (the job is already disabled via `if: false`) Closes #172
Sign in to join this conversation.