diff --git a/.forgejo/workflows/main.yaml b/.forgejo/workflows/main.yaml index 39c0653..1d9ed3f 100644 --- a/.forgejo/workflows/main.yaml +++ b/.forgejo/workflows/main.yaml @@ -5,24 +5,18 @@ jobs: container: image: debian:bookworm steps: - - name: Sort environment - run: env | sort - - - name: List event - run: cat "${GITHUB_EVENT_PATH}" - - - name: Set DNS + - name: Clone CD run: | echo '${{vars.dns}}' > '/etc/resolv.conf' - cat '/etc/resolv.conf' + apt-get update + apt-get install --yes 'git' + git clone "${GITHUB_SERVER_URL}/rwx.work/cd" - - name: Update catalog - run: apt-get update + - run: 'cd/env' - name: Install tools run: | - apt-get install --assume-yes \ - 'git' \ + apt-get install --yes \ 'tree' \ 'pandoc' \ 'rsync' \