fix: remove redundant if: success() condition from deploy job

The if: success() might be causing issues with Forgejo's secret handling.
Jobs with 'needs' automatically wait for dependencies to succeed, making
the condition redundant.
This commit is contained in:
Graham McIntire 2026-03-08 14:14:16 -05:00
parent d8fb4373db
commit 28c8e6f9ae
No known key found for this signature in database

View file

@ -215,7 +215,6 @@ jobs:
runs-on: ubuntu-22.04
# Only require ExUnit tests to pass, e2e is optional
needs: [test-exunit]
if: success()
steps:
- name: Checkout code