File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 9
9
builder-host :
10
10
required : true
11
11
type : string
12
+ # secrets:
13
+ # PRIVATE_GITHUB_DEPLOY_TOKEN:
14
+ # required: true
12
15
13
16
permissions :
14
17
contents : read # to fetch code (actions/checkout)
33
36
- uses : actions/checkout@v4
34
37
with :
35
38
ref : ${{ github.event.pull_request.head.sha || github.sha }}
39
+
36
40
- uses : ./.github/actions/submodules-checkout
37
41
with :
38
42
submodules-ssh-key : ${{ secrets.PRIVATE_GITHUB_DEPLOY_TOKEN }}
Original file line number Diff line number Diff line change 18
18
checks :
19
19
timeout-minutes : 20
20
20
21
+ environment :
22
+ name : development
23
+
21
24
env :
22
25
DATABASE_URL : postgres://
23
26
AUTH_SECRET : test
59
62
check-size :
60
63
runs-on : ubuntu-latest
61
64
65
+ environment :
66
+ name : development
67
+
62
68
steps :
63
69
- uses : actions/checkout@v4
64
70
with :
Original file line number Diff line number Diff line change @@ -85,11 +85,19 @@ jobs:
85
85
builder-host : " ${{ steps.vercel.outputs.alias }}.${{ matrix.environment }}.webstudio.is"
86
86
87
87
fixtures-test :
88
+ strategy :
89
+ matrix :
90
+ environment :
91
+ - empty
92
+ - development
93
+
88
94
needs : deployment
89
95
uses : ./.github/workflows/fixtures-test.yml
90
96
with :
91
97
builder-url : ${{ needs.deployment.outputs.builder-url }}
92
98
builder-host : ${{ needs.deployment.outputs.builder-host }}
99
+ # secrets:
100
+ # PRIVATE_GITHUB_DEPLOY_TOKEN: ${{ secrets.PRIVATE_GITHUB_DEPLOY_TOKEN }}
93
101
94
102
delete-github-deployments :
95
103
needs : fixtures-test
You can’t perform that action at this time.
0 commit comments