We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a49b34d + 0e4ba5b commit e2a94faCopy full SHA for e2a94fa
.github/workflows/azure-deploy.yml
@@ -43,8 +43,16 @@ jobs:
43
npm run build --if-present
44
npm run test --if-present
45
46
+ - name: Create dedicated publish folder
47
+ run: |
48
+ mkdir -p publish
49
+ cp -r dist publish/
50
+ cp -r node_modules publish/
51
+ cp package.json publish/
52
+ cp package-lock.json publish/
53
+
54
- name: Zip artifact for deployment
- run: zip -r release.zip . -x "src/*" ".git*" "*.md"
55
+ run: (cd publish && zip -r ../release.zip .)
56
57
- name: Upload artifact for deployment job
58
uses: actions/upload-artifact@v4
0 commit comments