File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
docs/hypernode-deploy/pipelines Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 7676 retention-days : 7
7777` ` `
7878
79+ ` ` ` ` {note}
80+ Don't forget to set the specifications of the image to what your project needs. The same goes for the deploy steps.
81+ For example, if your project needs PHP 7.4 and Node.js 16, set the image to:
82+ ` ` ` yaml
83+ jobs :
84+ build :
85+ container : quay.io/hypernode/deploy:3-php7.4-node16
86+ ...
87+ ```
88+ ````
89+
7990## Deploy to production
8091
8192Create a file called `.github/workflows/deploy_production.yml` with the following contents.
Original file line number Diff line number Diff line change @@ -68,12 +68,13 @@ build:
6868 - build/**
6969` ` `
7070
71- Don't forget to set the specifications of the image to what your project needs,
72- so if for example your project needs PHP 7.4 and Node.js 16, set the image to:
73-
71+ ` ` ` ` {note}
72+ Don't forget to set the specifications of the image to what your project needs.
73+ For example, if your project needs PHP 7.4 and Node.js 16, set the image to:
7474` ` ` yaml
7575image : quay.io/hypernode/deploy:3-php7.4-node16
7676` ` `
77+ ` ` ` `
7778
7879## Deploy to production
7980
You can’t perform that action at this time.
0 commit comments