Html - Hello world - Quick Start - Ripple - Stable #376
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Html - 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-vanilla-ripple --bare --log error | |
- name: Bit sign get-hello-world | |
run: | | |
cd hello-world-vanilla-ripple | |
bit sign frontend.html/quickstart/hello-world --multiple --rebuild --log error | |
- name: Bit sign envs/my-html-env | |
run: | | |
cd hello-world-vanilla-ripple | |
bit sign frontend.html/quickstart/hello-world-html-app --multiple --rebuild --log error | |
- name: Bit sign ui/hello-world | |
run: | | |
cd hello-world-vanilla-ripple | |
bit sign frontend.html/quickstart/my-shared-styles --multiple --rebuild --log error | |
- name: Bit sign hello-world-app | |
run: | | |
cd hello-world-vanilla-ripple | |
bit sign frontend.html/quickstart/footer-function --multiple --rebuild --log error | |
continue-on-error: false |