We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ab0469 commit 87998f1Copy full SHA for 87998f1
.github/workflows/test_codepush-csh.yml
@@ -29,7 +29,9 @@ jobs:
29
npm run test --if-present
30
31
- name: Zip artifact for deployment
32
- run: zip release.zip ./* -r
+ run: |
33
+ cd api
34
+ zip -r ../release.zip .
35
36
- name: Upload artifact for deployment job
37
uses: actions/upload-artifact@v4
@@ -53,8 +55,8 @@ jobs:
53
55
name: node-app
54
56
57
- name: Unzip artifact for deployment
- run: unzip release.zip
-
58
+ run: unzip release.zip -d app
59
+
60
- name: Login to Azure
61
uses: azure/login@v2
62
with:
@@ -68,5 +70,4 @@ jobs:
68
70
69
71
app-name: 'codepush-csh'
72
slot-name: 'Production'
- package: .
73
+ package: ./app
0 commit comments