Skip to content

Commit 98b1017

Browse files
authored
Create main.yml
1 parent cd9c500 commit 98b1017

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/main.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
25+
name: 01JHU_INST-nde
26+
path: ./**/dist/01JHU_INST-nde

0 commit comments

Comments
 (0)