27 lines
637 B
YAML
27 lines
637 B
YAML
on: [push]
|
|
jobs:
|
|
job:
|
|
runs-on: docker
|
|
container:
|
|
image: debian:bookworm
|
|
steps:
|
|
- name: Clone CD
|
|
run: |
|
|
echo '${{vars.dns}}' > '/etc/resolv.conf'
|
|
apt-get update
|
|
apt-get install --yes 'git'
|
|
git clone "${GITHUB_SERVER_URL}/rwx.work/cd" '/usr/local/sbin'
|
|
|
|
- env:
|
|
TOP_SECRET: ${{secrets.top_secret}}
|
|
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
|