31 lines
598 B
YAML
31 lines
598 B
YAML
when:
|
|
branch: main
|
|
|
|
steps:
|
|
- name: build rapport
|
|
image: texlive/texlive:latest
|
|
commands:
|
|
- cd rapport
|
|
- make
|
|
|
|
- name: build presentation
|
|
image: texlive/texlive:latest
|
|
commands:
|
|
- cd presentation
|
|
- make
|
|
|
|
- name: build soutenance
|
|
image: texlive/texlive:latest
|
|
commands:
|
|
- cd soutenance
|
|
- make
|
|
|
|
- name: publish
|
|
image: woodpeckerci/plugin-release
|
|
settings:
|
|
files:
|
|
# Could also be "hello-world*" to match both
|
|
- "hello-world"
|
|
- "hello-world.exe"
|
|
api_key:
|
|
from_secret: ACCESS_TOKEN
|