Skip to content

Commit 7ef21e0

Browse files
committed
[CICD] Added artifact upload
1 parent 36b50c4 commit 7ef21e0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/helloCICD.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,14 @@ jobs:
2727
- uses: actions/checkout@v2
2828

2929
# Runs a multi-line command using the runners shell
30-
- name: Run our custom script
30+
- name: Ionic Build
3131
run: |
3232
cd cicd_app
3333
npm install
3434
ionic build --release
35+
36+
- name: Upload build artifacts
37+
uses: actions/upload-artifact@v1
38+
with:
39+
name: build
40+
path: cicd_app/www

0 commit comments

Comments
 (0)