From b325dca13b1479c669e4f586949305977fb93323 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 22 Mar 2024 23:15:17 +0100 Subject: [PATCH] env --- .forgejo/workflows/main.yaml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) 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' \