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.
1 parent cd9c500 commit 98b1017Copy full SHA for 98b1017
.github/workflows/main.yml
@@ -0,0 +1,26 @@
1
+name: Create the customization package
2
+run-name: Creating 01JHU_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
22
+ - name: Archive production artifacts
23
+ uses: actions/upload-artifact@v4
24
25
+ name: 01JHU_INST-nde
26
+ path: ./**/dist/01JHU_INST-nde
0 commit comments