mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Start staging tunnel in background (#3538)
This commit is contained in:
parent
40ba098913
commit
26479ccd3f
1 changed files with 8 additions and 2 deletions
10
.github/workflows/deploy-staging.yml
vendored
10
.github/workflows/deploy-staging.yml
vendored
|
|
@ -27,7 +27,10 @@ jobs:
|
|||
name: build
|
||||
|
||||
- name: Start tunnel
|
||||
run: npm install -g localtunnel && lt --port 8080
|
||||
run: |
|
||||
npm install -g localtunnel
|
||||
lt --port 8080 &
|
||||
sleep 5
|
||||
|
||||
- name: Start Fleet server
|
||||
timeout-minutes: 60
|
||||
|
|
@ -51,7 +54,10 @@ jobs:
|
|||
name: build
|
||||
|
||||
- name: Start tunnel
|
||||
run: npm install -g localtunnel && lt --port 8080
|
||||
run: |
|
||||
npm install -g localtunnel
|
||||
lt --port 8080 &
|
||||
sleep 5
|
||||
|
||||
- name: Start Fleet server
|
||||
timeout-minutes: 60
|
||||
|
|
|
|||
Loading…
Reference in a new issue