ci: allow deploy on workflow_dispatch trigger

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
maulanasdqn
2026-04-02 23:26:38 +07:00
co-authored by Claude Sonnet 4.6
parent 12db8cc6b4
commit 222495472a
+1 -1
View File
@@ -31,7 +31,7 @@ jobs:
deploy: deploy:
needs: build needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/develop' if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/develop'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Install Nix - name: Install Nix