Skip to content

Commit 2084bca

Browse files
committed
docs: update README.md
1 parent 883e6d0 commit 2084bca

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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
1919
with:
2020
project_name: ${{ secrets.PROJECT_NAME }}
2121
cloud_username: ${{ secrets.CLOUD_USERNAME }}
@@ -28,6 +28,9 @@ with:
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

4751
Any 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
5357
with:
5458
project_name: ${{ secrets.PROJECT_NAME }}
5559
cloud_username: ${{ secrets.CLOUD_USERNAME }}
@@ -60,6 +64,9 @@ with:
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
8189
with:
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
111119
with:
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
137145
with:
138146
project_name: ${{ secrets.PROJECT_NAME }}
139147
cloud_username: ${{ secrets.CLOUD_USERNAME }}

0 commit comments

Comments
 (0)