28 lines
475 B
YAML
28 lines
475 B
YAML
on: [push]
|
|
jobs:
|
|
job:
|
|
|
|
runs-on: docker
|
|
container:
|
|
image: debian:bookworm
|
|
|
|
steps:
|
|
|
|
- name: cd
|
|
run: eval '${{vars.cd}}'
|
|
|
|
- env:
|
|
CD: '${{secrets.cd}}'
|
|
run: cd-set-ssh
|
|
|
|
- run: cd-list-environment
|
|
|
|
- name: Install tools
|
|
run: |
|
|
apt-get install --yes \
|
|
'pandoc' \
|
|
|
|
- run: cd-clone-branch
|
|
- run: cd-build
|
|
- run: cd-browse-workspace
|
|
- run: cd-synchronize-output
|