45 lines
923 B
YAML
45 lines
923 B
YAML
|
name: kibot
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
erc:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
submodules: recursive
|
||
|
ssh-strict: false
|
||
|
fetch-depth: 2
|
||
|
- uses: INTI-CMNB/KiBot@v2_k8
|
||
|
with:
|
||
|
config: config_erc.kibot.yaml
|
||
|
dir: output
|
||
|
|
||
|
drc:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
submodules: recursive
|
||
|
ssh-strict: false
|
||
|
fetch-depth: 2
|
||
|
- uses: INTI-CMNB/KiBot@v2_k8
|
||
|
with:
|
||
|
config: config_drc.kibot.yaml
|
||
|
dir: output
|
||
|
|
||
|
generate_outputs:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
submodules: recursive
|
||
|
fetch-depth: 2
|
||
|
- uses: INTI-CMNB/KiBot@v2_k8
|
||
|
with:
|
||
|
config: config.kibot.yaml
|
||
|
dir: output
|
||
|
- uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: output
|
||
|
path: output
|