-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (36 loc) · 1.21 KB
/
angular-quickstart-ripple-stable.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Angular - Hello world - Quick Start - Ripple - Stable
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container:
image: bitsrc/stable:latest
env:
HOME: /home/bituser
steps:
- name: Show BVM config
run: |
bvm config
- name: Initialize a workspace
run: |
bit init hello-world-angular-ripple --bare --log error
- name: Bit sign get-hello-world
run: |
cd hello-world-angular-ripple
bit sign learnbit-angular.hello-world/get-hello-world --multiple --rebuild --log error
- name: Bit sign envs/my-angular-env
run: |
cd hello-world-angular-ripple
bit sign learnbit-angular.hello-world/envs/my-angular-env --multiple --rebuild --log error
- name: Bit sign ui/hello-world
run: |
cd hello-world-angular-ripple
bit sign learnbit-angular.hello-world/ui/hello-world --multiple --rebuild --log error
- name: Bit sign hello-world-app
run: |
cd hello-world-angular-ripple
bit sign learnbit-angular.hello-world/hello-world-app --multiple --rebuild --log error
continue-on-error: false