@@ -15,7 +15,7 @@ With those four you can easily compose the deployment script for your needs.
1515### build-frontend
1616
1717``` yaml
18- uses : vuestorefront/storefront-deployment/build-frontend@v4.4 .0
18+ uses : vuestorefront/storefront-deployment/build-frontend@v4.5 .0
1919with :
2020 project_name : ${{ secrets.PROJECT_NAME }}
2121 cloud_username : ${{ secrets.CLOUD_USERNAME }}
2828 npm_registry : ' https://registrynpm.storefrontcloud.io'
2929 version : ' 2.3.0'
3030 image_provider : ' ipx'
31+ extra_docker_envs : |
32+ EXTRA_ENV_FOR_DOCKERFILE=somevalue-hardcoded
33+ ANOTHER_EXTRA_ENV=${{ secrets.SOME_VALUE }}
3134` ` `
3235
3336**Input Parameters:**
@@ -43,13 +46,14 @@ with:
4346- `npm_registry` : URL to the private NPM registry. Optional field. Defaults to `https://registrynpm.storefrontcloud.io`.
4447- `version` : Version that will be used for docker image tag. Example: 2.3.0, 3.1.0-rc.1. If not passed, github.sha will be used
4548- `image_provider` : Select image provider for Nuxt Image. Optional field. Only for Nuxt.
49+ - `docker_buildargs` : Multi-line input field, for passing in the additional build args. Optional field.
4650
4751Any environment variables needed by an application is needed to be set in the Alokai Console.
4852
4953# ## build-middleware
5054
5155` ` ` yaml
52- uses: vuestorefront/storefront-deployment/build-middleware@v4.4 .0
56+ uses: vuestorefront/storefront-deployment/build-middleware@v4.5 .0
5357with:
5458 project_name: ${{ secrets.PROJECT_NAME }}
5559 cloud_username: ${{ secrets.CLOUD_USERNAME }}
6064 docker_registry_url: 'registry.vuestorefront.cloud'
6165 npm_registry: 'https://registrynpm.storefrontcloud.io'
6266 version: 2.3.0
67+ extra_docker_envs: |
68+ EXTRA_ENV_FOR_DOCKERFILE=somevalue-hardcoded
69+ ANOTHER_EXTRA_ENV=${{ secrets.SOME_VALUE }}
6370` ` `
6471
6572**Input Parameters:**
@@ -73,11 +80,12 @@ with:
7380- `docker_registry_url` : URL to the Docker image registry. Optional field. Defaults to `registry.vuestorefront.cloud`.
7481- `npm_registry` : URL to the private NPM registry. Optional field. Defaults to `https://registrynpm.storefrontcloud.io`.
7582- `version` : Version that will be used for docker image tag. Example: 2.3.0, 3.1.0-rc.1. If not passed, github.sha will be used
83+ - `docker_buildargs` : Multi-line input field, for passing in the additional build args. Optional field.
7684
7785# ## build-stripe-ct
7886
7987` ` ` yaml
80- uses: vuestorefront/storefront-deployment/build-stripe-ct@v4.4 .0
88+ uses: vuestorefront/storefront-deployment/build-stripe-ct@v4.5 .0
8189with:
8290 project_name: ${{ secrets.PROJECT_NAME }}
8391 cloud_username: ${{ secrets.CLOUD_USERNAME }}
@@ -107,7 +115,7 @@ with:
107115# ## deploy
108116
109117` ` ` yaml
110- uses: vuestorefront/storefront-deployment/deploy@v4.4 .0
118+ uses: vuestorefront/storefront-deployment/deploy@v4.5 .0
111119with:
112120 project_name: ${{ secrets.PROJECT_NAME }}
113121 cloud_username: ${{ secrets.CLOUD_USERNAME }}
@@ -133,7 +141,7 @@ with:
133141# ## deploy/stripe-ct
134142
135143` ` ` yaml
136- uses: vuestorefront/storefront-deployment/deploy/stripe-ct@v4.4 .0
144+ uses: vuestorefront/storefront-deployment/deploy/stripe-ct@v4.5 .0
137145with:
138146 project_name: ${{ secrets.PROJECT_NAME }}
139147 cloud_username: ${{ secrets.CLOUD_USERNAME }}
0 commit comments