11# Deploy to QuantCDN Action
22
3- This GitHub Action deploys your static site and/or functions to QuantCDN using the Quant CLI v5 .
3+ This GitHub Action deploys your static site and/or functions to QuantCDN using the Quant CLI v6 .
44
55## Usage
66
77### Deploy Assets
88``` yaml
9- - uses : quantcdn/action-deploy@v5
9+ - uses : quantcdn/action-deploy@v6
1010 with :
1111 customer : your-customer-id
1212 project : your-project-name
@@ -16,7 +16,7 @@ This GitHub Action deploys your static site and/or functions to QuantCDN using t
1616
1717### Deploy Functions
1818` ` ` yaml
19- - uses : quantcdn/action-deploy@v5
19+ - uses : quantcdn/action-deploy@v6
2020 with :
2121 customer : your-customer-id
2222 project : your-project-name
@@ -56,15 +56,15 @@ jobs:
5656 deploy:
5757 runs-on: ubuntu-latest
5858 steps:
59- - uses: actions/checkout@v4
59+ - uses: actions/checkout@v6
6060
6161 - name: Build site
6262 run: |
6363 npm install
6464 npm run build
6565
6666 - name: Deploy to QuantCDN
67- uses: quantcdn/action-deploy@v5
67+ uses: quantcdn/action-deploy@v6
6868 with:
6969 customer: your-customer-id
7070 project: your-project-name
@@ -109,10 +109,10 @@ jobs:
109109 deploy:
110110 runs-on: ubuntu-latest
111111 steps:
112- - uses: actions/checkout@v4
112+ - uses: actions/checkout@v6
113113
114114 - name: Deploy Functions
115- uses: quantcdn/action-deploy@v5
115+ uses: quantcdn/action-deploy@v6
116116 with:
117117 customer: your-customer-id
118118 project: your-project-name
@@ -132,15 +132,15 @@ jobs:
132132 deploy:
133133 runs-on: ubuntu-latest
134134 steps:
135- - uses: actions/checkout@v4
135+ - uses: actions/checkout@v6
136136
137137 - name: Build site
138138 run: |
139139 npm install
140140 npm run build
141141
142142 - name: Deploy to QuantCDN
143- uses: quantcdn/action-deploy@v5
143+ uses: quantcdn/action-deploy@v6
144144 with:
145145 customer: your-customer-id
146146 project: your-project-name
@@ -151,7 +151,7 @@ jobs:
151151
152152# # Notes
153153
154- - This action uses Quant CLI v5
154+ - This action uses Quant CLI v6
155155- For search functionality, please use the dedicated search action
156156- Make sure your `QUANT_TOKEN` is stored securely in your repository secrets
157157
0 commit comments