-
Notifications
You must be signed in to change notification settings - Fork 102
36 lines (31 loc) · 1.21 KB
/
07-action-workflow.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
name: 07 - Action workflow
on:
workflow_dispatch:
jobs:
action_job_ubuntu:
runs-on: ubuntu-latest
name: Ritchie CLI Action Ubuntu
steps:
- name: Run Ritchie Formula Command
uses: GuillaumeFalourd/ritchie-cli-action@v1
with:
rit_repo_url: https://github.com/ZupIT/ritchie-formulas-demo
rit_formula_command: rit demo coffee-shell --rit_name=Dennis --rit_coffee_type=espresso --rit_delivery=false
action_job_macos:
runs-on: macos-latest
name: Ritchie CLI Action MacOS
steps:
- name: Run Ritchie Formula Command
uses: GuillaumeFalourd/ritchie-cli-action@v1
with:
rit_repo_url: https://github.com/ZupIT/ritchie-formulas-demo
rit_formula_command: rit demo coffee-shell --rit_name=Dennis --rit_coffee_type=espresso --rit_delivery=false
action_job_windows:
runs-on: windows-latest
name: Ritchie CLI Action Windows
steps:
- name: Run Ritchie Formula Command
uses: GuillaumeFalourd/ritchie-cli-action@v1
with:
rit_repo_url: https://github.com/ZupIT/ritchie-formulas-demo
rit_formula_command: ./rit.exe demo coffee-python --rit_name=Dennis --rit_coffee_type=espresso --rit_delivery=false