File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Create the customization package
2+ run-name : Creating 01MIT_INST-NDE Customization Package Zip
3+ on : [push, workflow_dispatch]
4+ jobs :
5+ create-package :
6+ runs-on : ubuntu-latest
7+ steps :
8+ - name : Checkout
9+ uses : actions/checkout@v3
10+
11+ - name : Use Node.js 20
12+ uses : actions/setup-node@v3
13+ with :
14+ node-version : 20.x
15+
16+ - name : Build
17+ run : |
18+ npm install -g @angular/cli
19+ npm install
20+ npm run build
21+ mv /home/runner/work/customModule/customModule/dist/01MIT_INST-nde /home/runner/work/customModule/customModule/01MIT_INST-nde
22+
23+ - name : Archive production artifacts
24+ uses : actions/upload-artifact@v4
25+ with :
26+ name : 01MIT_INST-nde
27+ path : /home/runner/work/customModule/customModule/01MIT_INST-nde
You can’t perform that action at this time.
0 commit comments