<t>J'ai eu ce problème en déployant une application node sur Azure App Services.<br/>
<br/>
Je l'ai résolu en ajoutant une étape zip et une étape unzip.<br/>
<br/>
L'étape zip est<br/>
<br/>
- name: Zip artifact for deployment<br/>
run: zip release.zip ./* -r<br/>
<br/>
```<br/>
<br/>
L'étape unzip est<br/>
<br/>
```<br/>
- name: unzip artifact for deployment<br/>
run: unzip release.zip<br/>
<br/>
```<br/>
<br/>
Ajoutez l'étape zip après l'étape de build et avant l'étape Upload artifact comme ceci<br/>
<br/>
```<br/>
- name: npm install, build, and test<br/>
run: |<br/>
npm install<br/>
npm run build --if-present<br/>
npm run test --if-present<br/>
<br/>
- name: Zip artifact for deployment<br/>
run: zip release.zip ./* -r<br/>
<br/>
- name: Upload</t>