We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c63fe1 commit 2d44a7dCopy full SHA for 2d44a7d
1 file changed
apps/api/src/deploy.test.ts
@@ -92,11 +92,9 @@ describe('deploy-node.yml', () => {
92
expect(workflow).toContain('R2_ENDPOINT')
93
})
94
95
- test('deploys to Hetzner via SSH', () => {
96
- expect(workflow).toContain('Deploy to Hetzner')
97
- expect(workflow).toContain('HETZNER_SSH_KEY')
98
- expect(workflow).toContain('HETZNER_HOST')
99
- expect(workflow).toContain('systemctl restart sandchest-node')
+ test('delegates deployment to admin app (no direct SSH)', () => {
+ expect(workflow).toContain('Deploy Daemon')
+ expect(workflow).not.toContain('HETZNER_SSH_KEY')
100
101
102
test('uses concurrency group to prevent parallel deploys', () => {
0 commit comments