File tree Expand file tree Collapse file tree 1 file changed +16
-17
lines changed Expand file tree Collapse file tree 1 file changed +16
-17
lines changed Original file line number Diff line number Diff line change 1
1
# See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags.
2
2
image : quay.io/hypernode/deploy:3-php8.2-node18
3
3
4
+ definition :
5
+ steps :
6
+ - step : &hypernode-build
7
+ name : Build
8
+ script :
9
+ - hypernode-deploy build -vvv
10
+ artifacts :
11
+ - build/**
12
+
4
13
pipelines :
5
14
branches :
6
15
# Deploy to test configuration
7
16
# If you are only deploying to production remove this configuration
8
- test :
9
- - step :
10
- name : build
11
- script :
12
- - hypernode-deploy build -vvv
13
- artifacts :
14
- - build/**
17
+ test : # acceptance/staging branch
18
+ - step : *hypernode-build
15
19
- step :
16
- name : deploy
20
+ name : Deploy to staging
17
21
deployment : test
18
22
script :
19
23
- hypernode-deploy deploy test -vvv
20
24
after-script :
21
25
- hypernode-deploy cleanup
22
-
23
26
# Deploy to production
24
27
master :
28
+ - step : *hypernode-build
25
29
- step :
26
- name : build
27
- script :
28
- - hypernode-deploy build
29
- artifacts :
30
- - build/**
31
- - step :
32
- name : deploy
30
+ name : Deploy to production
33
31
deployment : production
34
32
script :
35
- - hypernode-deploy deploy production
33
+ - hypernode-deploy deploy production -vvv
34
+
You can’t perform that action at this time.
0 commit comments