when: - event: ["push"] branch: ["main"] - event: ["manual"] dependencies: ## from nixpkgs nixpkgs: - nodejs - git steps: - name: "Set up SSH Key" command: "mkdir .ssh ; echo $SSH_KEY > .ssh/id_ed25519" - name: "Config Git" command: "git config core.sshCommand 'ssh -i ~/.ssh/id_ed25519'" - name: "Deploy" command: "./deploy.sh"