We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d522e07 commit e32f44fCopy full SHA for e32f44f
1 file changed
azure.yaml
@@ -65,12 +65,31 @@ services:
65
prepackage:
66
windows:
67
shell: pwsh
68
- run: ../scripts/package_frontend.ps1
+ run: |
69
+ mkdir dist -Force
70
+ rm dist/* -r -Force
71
+ poetry install
72
+ poetry export -o dist/requirements.txt
73
+ cp *.py dist -Force
74
+ cp backend dist -r -Force
75
+ cd frontend
76
+ npm install
77
+ npm run build
78
interactive: true
79
continueOnError: false
80
posix:
81
shell: sh
- run: ../scripts/package_frontend.sh
82
83
+ set -eou pipefail
84
+ mkdir -p dist
85
+ rm -rf dist/*
86
87
88
+ cp *.py dist
89
+ cp -r backend dist
90
91
92
93
94
95
0 commit comments